about summary refs log tree commit homepage
path: root/examples/echo.ru
diff options
context:
space:
mode:
Diffstat (limited to 'examples/echo.ru')
-rw-r--r--examples/echo.ru2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/echo.ru b/examples/echo.ru
index c79cb7b..14908c5 100644
--- a/examples/echo.ru
+++ b/examples/echo.ru
@@ -21,7 +21,7 @@ end
 
 use Rack::Chunked
 run lambda { |env|
-  /\A100-continue\z/ =~ env['HTTP_EXPECT'] and return [100, {}, []]
+  /\A100-continue\z/i =~ env['HTTP_EXPECT'] and return [100, {}, []]
   [ 200, { 'Content-Type' => 'application/octet-stream' },
     EchoBody.new(env['rack.input']) ]
 }