diff options
Diffstat (limited to 'actionpack/README')
-rw-r--r-- | actionpack/README | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/README b/actionpack/README index 72f0f6241a..2746c3cc43 100644 --- a/actionpack/README +++ b/actionpack/README @@ -97,7 +97,7 @@ A short rundown of the major features: class WeblogController < ActionController::Base before_filter :authenticate, :cache, :audit - after_filter { |c| c.response.body = GZip::compress(c.response.body) } + after_filter { |c| c.response.body = Gzip::compress(c.response.body) } after_filter LocalizeFilter def index |