Skip to content

Commit

Permalink
Fixing Issue #11083
Browse files Browse the repository at this point in the history
Removing other occurrences of `the` appearing twice
  • Loading branch information
chmod600 committed Jun 25, 2013
1 parent aaad6b6 commit 444d341
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion actionpack/CHANGELOG.md
@@ -1,7 +1,7 @@
* Merge `:action` from routing scope and assign endpoint if both `:controller`
and `:action` are present. The endpoint assignment only occurs if there is
no `:to` present in the options hash so should only affect routes using the
shorthand syntax (i.e. endpoint is inferred from the the path).
shorthand syntax (i.e. endpoint is inferred from the path).

Fixes #9856

Expand Down
2 changes: 1 addition & 1 deletion activemodel/lib/active_model/secure_password.rb
Expand Up @@ -15,7 +15,7 @@ module ClassMethods
# argument. You can add more validations by hand if need be.
#
# If you don't need the confirmation validation, just don't set any
# value to the password_confirmation attribute and the the validation
# value to the password_confirmation attribute and the validation
# will not be triggered.
#
# You need to add bcrypt-ruby (~> 3.0.0) to Gemfile to use #has_secure_password:
Expand Down
2 changes: 1 addition & 1 deletion guides/source/form_helpers.md
Expand Up @@ -973,4 +973,4 @@ As a convenience you can instead pass the symbol `:all_blank` which will create

### Adding Fields on the Fly

Rather than rendering multiple sets of fields ahead of time you may wish to add them only when a user clicks on an 'Add new child' button. Rails does not provide any builtin support for this. When generating new sets of fields you must ensure the the key of the associated array is unique - the current javascript date (milliseconds after the epoch) is a common choice.
Rather than rendering multiple sets of fields ahead of time you may wish to add them only when a user clicks on an 'Add new child' button. Rails does not provide any builtin support for this. When generating new sets of fields you must ensure the key of the associated array is unique - the current javascript date (milliseconds after the epoch) is a common choice.

0 comments on commit 444d341

Please sign in to comment.