about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--examples/big_app_gc.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/big_app_gc.rb b/examples/big_app_gc.rb
index 0d9aa54..b4e134f 100644
--- a/examples/big_app_gc.rb
+++ b/examples/big_app_gc.rb
@@ -1,6 +1,6 @@
 # Run GC after every request, before attempting to accept more connections.
 #
-# You could customize this patch to read REQ["PATH_INFO"] and only
+# You could customize this patch to read @request.env["PATH_INFO"] and only
 # call GC.start after expensive requests.
 #
 # We could have this wrap the response body.close as middleware, but the