diff options
author | Chris Arcand <chris@chrisarcand.com> | 2018-04-13 14:52:24 -0500 |
---|---|---|
committer | Chris Arcand <chris@chrisarcand.com> | 2018-04-13 14:55:59 -0500 |
commit | 72486005dd906939ced0fd69659b2fae2ee0ee01 (patch) | |
tree | 044d362b83587671df793958e43f624e1d3cbc4c /activerecord/lib | |
parent | 4f99a2186479d5f77460622f2c0f37708b3ec1bc (diff) | |
download | rails-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 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/associations.rb | 2 | ||||
-rw-r--r-- | activerecord/lib/active_record/attribute_methods/read.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/associations.rb b/activerecord/lib/active_record/associations.rb index b1cad0d0a4..0e68e49182 100644 --- a/activerecord/lib/active_record/associations.rb +++ b/activerecord/lib/active_record/associations.rb @@ -241,7 +241,7 @@ module ActiveRecord association end - def association_cached?(name) # :nodoc + def association_cached?(name) # :nodoc: @association_cache.key?(name) end diff --git a/activerecord/lib/active_record/attribute_methods/read.rb b/activerecord/lib/active_record/attribute_methods/read.rb index 14f700b6a9..0f7bcba564 100644 --- a/activerecord/lib/active_record/attribute_methods/read.rb +++ b/activerecord/lib/active_record/attribute_methods/read.rb @@ -69,7 +69,7 @@ module ActiveRecord 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 |