Fix broken nodocs

This commit fixes all references in the codebase missing a trailing :,
which causes the nodoc not to actually work :) [skip ci]
This commit is contained in:
Chris Arcand 2018-04-13 14:52:24 -05:00
parent 4f99a21864
commit 72486005dd
No known key found for this signature in database
GPG Key ID: B388BFFDDB71C4AD
3 changed files with 3 additions and 3 deletions

@ -73,7 +73,7 @@ def commit_flash # :nodoc:
end
end
def reset_session # :nodoc
def reset_session # :nodoc:
super
self.flash = nil
end

@ -241,7 +241,7 @@ def association(name) #:nodoc:
association
end
def association_cached?(name) # :nodoc
def association_cached?(name) # :nodoc:
@association_cache.key?(name)
end

@ -69,7 +69,7 @@ def read_attribute(attr_name, &block)
if defined?(JRUBY_VERSION)
# This form is significantly faster on JRuby, and this is one of our biggest hotspots.
# https://github.com/jruby/jruby/pull/2562
def _read_attribute(attr_name, &block) # :nodoc
def _read_attribute(attr_name, &block) # :nodoc:
@attributes.fetch_value(attr_name.to_s, &block)
end
else