diff options
author | Claudio B <claudiob@users.noreply.github.com> | 2015-11-15 02:45:57 -0800 |
---|---|---|
committer | Claudio B <claudiob@users.noreply.github.com> | 2015-11-15 02:45:57 -0800 |
commit | 69f72223e82a4a4f16f16ad7abb36ebfd162a366 (patch) | |
tree | 382660b489ceef542a2f4d92190dd4f706767e40 /actionpack/lib | |
parent | fdf5d4dfc30ce5a599392305567c0230c21b9b84 (diff) | |
parent | 010667ba089bdaf672a39a410033ff15e3ce7522 (diff) | |
download | rails-69f72223e82a4a4f16f16ad7abb36ebfd162a366.tar.gz rails-69f72223e82a4a4f16f16ad7abb36ebfd162a366.tar.bz2 rails-69f72223e82a4a4f16f16ad7abb36ebfd162a366.zip |
Merge pull request #22299 from claudiob/fix-doc-tt
[ci skip] Fix <tt> in doc around +maximum(:updated_at)
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/metal/conditional_get.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/conditional_get.rb b/actionpack/lib/action_controller/metal/conditional_get.rb index 89d589c486..d86a793e4c 100644 --- a/actionpack/lib/action_controller/metal/conditional_get.rb +++ b/actionpack/lib/action_controller/metal/conditional_get.rb @@ -66,7 +66,7 @@ module ActionController # # You can also pass an object that responds to +maximum+, such as a # collection of active records. In this case +last_modified+ will be set by - # calling +maximum(:updated_at)+ on the collection (the timestamp of the + # calling <tt>maximum(:updated_at)</tt> on the collection (the timestamp of the # most recently updated record) and the +etag+ by passing the object itself. # # def index |