From 88972ff301ee860708e190880d15123767cb77df Mon Sep 17 00:00:00 2001 From: Alex Zvorygin Date: Tue, 3 Jul 2018 09:19:46 -0400 Subject: [PATCH] fix typo in ruby middleware example continiously -> continuously --- examples/middleware/echo.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/middleware/echo.rb b/examples/middleware/echo.rb index 12bc03c..7afe673 100755 --- a/examples/middleware/echo.rb +++ b/examples/middleware/echo.rb @@ -1,6 +1,6 @@ #!/usr/bin/env ruby # encoding: utf-8 -while data = STDIN.gets # continiously read line from STDIN +while data = STDIN.gets # continuously read line from STDIN next unless data data = data.chomp # remove end of line symbol