aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/routing.md
diff options
context:
space:
mode:
authorSteven Nunez <steven.nunez@gmail.com>2013-12-30 09:51:19 -0500
committerSteven Nunez <steven.nunez@gmail.com>2013-12-30 09:51:19 -0500
commitff47b0518b4d97f6115f9c71ded1f8402b8b57d5 (patch)
treee5ce537ac20138d67231110707d4e07395526b32 /guides/source/routing.md
parent2ab3bd16f926aaaf796156d7cf42ede8d1e8cd9b (diff)
downloadrails-ff47b0518b4d97f6115f9c71ded1f8402b8b57d5.tar.gz
rails-ff47b0518b4d97f6115f9c71ded1f8402b8b57d5.tar.bz2
rails-ff47b0518b4d97f6115f9c71ded1f8402b8b57d5.zip
Update explanation to match example
Diffstat (limited to 'guides/source/routing.md')
-rw-r--r--guides/source/routing.md2
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