diff options
author | Steven Nunez <steven.nunez@gmail.com> | 2013-12-30 09:51:19 -0500 |
---|---|---|
committer | Steven Nunez <steven.nunez@gmail.com> | 2013-12-30 09:51:19 -0500 |
commit | ff47b0518b4d97f6115f9c71ded1f8402b8b57d5 (patch) | |
tree | e5ce537ac20138d67231110707d4e07395526b32 | |
parent | 2ab3bd16f926aaaf796156d7cf42ede8d1e8cd9b (diff) | |
download | rails-ff47b0518b4d97f6115f9c71ded1f8402b8b57d5.tar.gz rails-ff47b0518b4d97f6115f9c71ded1f8402b8b57d5.tar.bz2 rails-ff47b0518b4d97f6115f9c71ded1f8402b8b57d5.zip |
Update explanation to match example
-rw-r--r-- | guides/source/routing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/routing.md b/guides/source/routing.md index 019861c3d6..3375293b5a 100644 --- a/guides/source/routing.md +++ b/guides/source/routing.md @@ -138,7 +138,7 @@ Sometimes, you have a resource that clients always look up without referencing a get 'profile', to: 'users#show' ``` -Passing a `String` to `match` will expect a `controller#action` format, while passing a `Symbol` will map directly to an action: +Passing a `String` to `get` will expect a `controller#action` format, while passing a `Symbol` will map directly to an action: ```ruby get 'profile', to: :show |