aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorChris Arcand <chris@chrisarcand.com>2018-04-13 14:52:24 -0500
committerChris Arcand <chris@chrisarcand.com>2018-04-13 14:55:59 -0500
commit72486005dd906939ced0fd69659b2fae2ee0ee01 (patch)
tree044d362b83587671df793958e43f624e1d3cbc4c /actionpack
parent4f99a2186479d5f77460622f2c0f37708b3ec1bc (diff)
downloadrails-72486005dd906939ced0fd69659b2fae2ee0ee01.tar.gz
rails-72486005dd906939ced0fd69659b2fae2ee0ee01.tar.bz2
rails-72486005dd906939ced0fd69659b2fae2ee0ee01.zip
Fix broken nodocs
This commit fixes all references in the codebase missing a trailing :, which causes the nodoc not to actually work :) [skip ci]
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_dispatch/middleware/flash.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/middleware/flash.rb b/actionpack/lib/action_dispatch/middleware/flash.rb
index 3e11846778..fd05eec172 100644
--- a/actionpack/lib/action_dispatch/middleware/flash.rb
+++ b/actionpack/lib/action_dispatch/middleware/flash.rb
@@ -73,7 +73,7 @@ module ActionDispatch
end
end
- def reset_session # :nodoc
+ def reset_session # :nodoc:
super
self.flash = nil
end