diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2016-11-19 19:59:52 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-19 19:59:52 -0500 |
commit | 4aeb73af1b290e574e5106e2739c869e4238ded5 (patch) | |
tree | 9a1b2aa56d8df323d4a8801a2b814181b1f2d52b /actionpack | |
parent | e7aeafc727eac1d98c7d3d0986421e1e0815f7e3 (diff) | |
parent | fa5436e017e31a00a33dd69eb989255af63c636e (diff) | |
download | rails-4aeb73af1b290e574e5106e2739c869e4238ded5.tar.gz rails-4aeb73af1b290e574e5106e2739c869e4238ded5.tar.bz2 rails-4aeb73af1b290e574e5106e2739c869e4238ded5.zip |
Merge pull request #27114 from y-yagi/fix_typo
fix typo in `match` doc [ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index 4efde09b8b..f3d76bb91c 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -532,7 +532,7 @@ module ActionDispatch # end # # [:constraints] - # Constrains parameters with a hash of regular expressions + # Constraints parameters with a hash of regular expressions # or an object that responds to <tt>matches?</tt>. In addition, constraints # other than path can also be specified with any object # that responds to <tt>===</tt> (eg. String, Array, Range, etc.). |