diff --git a/actionpack/lib/action_controller/caching/actions.rb b/actionpack/lib/action_controller/caching/actions.rb index e76a79f710c478823bbf3cc24e2f54375157a958..bd3b0b5df3a6c5181235d86d1145bf8d6b5c35ef 100644 --- a/actionpack/lib/action_controller/caching/actions.rb +++ b/actionpack/lib/action_controller/caching/actions.rb @@ -47,7 +47,8 @@ module Caching # And you can also use :if (or :unless) to pass a # proc that specifies when the action should be cached. # - # Finally, if you are using memcached, you can also pass :expires_in. + # As of Rails 3.0, you can also pass :expires_in with a time + # interval (in seconds) to schedule expiration of the cached item. # # The following example depicts some of the points made above: #