diff options
author | Vipul A M <vipulnsward@gmail.com> | 2017-06-11 17:51:08 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-11 17:51:08 +0530 |
commit | 76bb3660242a50fab50a34ad745b4fe9c677b83c (patch) | |
tree | 87386b022eefb3790e218be1762135cc3e870edf /guides | |
parent | 1d2cc1324e04773b6bb6c2692f38ccb815bf32c8 (diff) | |
download | rails-76bb3660242a50fab50a34ad745b4fe9c677b83c.tar.gz rails-76bb3660242a50fab50a34ad745b4fe9c677b83c.tar.bz2 rails-76bb3660242a50fab50a34ad745b4fe9c677b83c.zip |
Missing dots [ci skip] (#29414)
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_support_core_extensions.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md index aa81d1eb6f..23f53ac084 100644 --- a/guides/source/active_support_core_extensions.md +++ b/guides/source/active_support_core_extensions.md @@ -856,7 +856,7 @@ end The target can be anything callable within the object, e.g. instance variables, methods, constants, etc. Only the public methods of the target are delegated. -NOTE: Defined in `active_support/core_ext/module/delegation.rb` +NOTE: Defined in `active_support/core_ext/module/delegation.rb`. ### Redefining Methods @@ -864,7 +864,7 @@ There are cases where you need to define a method with `define_method`, but don' The method `redefine_method` prevents such a potential warning, removing the existing method before if needed. -NOTE: Defined in `active_support/core_ext/module/remove_method.rb` +NOTE: Defined in `active_support/core_ext/module/remove_method.rb`. Extensions to `Class` --------------------- @@ -952,7 +952,7 @@ When `:instance_reader` is `false`, the instance predicate returns a `NoMethodEr If you do not want the instance predicate, pass `instance_predicate: false` and it will not be defined. -NOTE: Defined in `active_support/core_ext/class/attribute.rb` +NOTE: Defined in `active_support/core_ext/class/attribute.rb`. #### `cattr_reader`, `cattr_writer`, and `cattr_accessor` @@ -1848,7 +1848,7 @@ as well as adding or subtracting their results from a Time object. For example: (4.months + 5.years).from_now ``` -NOTE: Defined in `active_support/core_ext/numeric/time.rb` +NOTE: Defined in `active_support/core_ext/numeric/time.rb`. ### Formatting |