aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorTom Stuart <tom@experthuman.com>2008-11-16 19:17:52 +0000
committerTom Stuart <tom@experthuman.com>2008-11-16 19:17:52 +0000
commit3e026a73d230954051a4976a600f0d6b6bad040d (patch)
treec9278e2eb980ce2bf3014e8ea14a1f1f2f64f522 /railties
parent2f3867ad90db2bcd6d8b6cac716da35ae8eeb72f (diff)
downloadrails-3e026a73d230954051a4976a600f0d6b6bad040d.tar.gz
rails-3e026a73d230954051a4976a600f0d6b6bad040d.tar.bz2
rails-3e026a73d230954051a4976a600f0d6b6bad040d.zip
Fix typo in routing guide
Diffstat (limited to 'railties')
-rw-r--r--railties/doc/guides/source/routing_outside_in.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/source/routing_outside_in.txt b/railties/doc/guides/source/routing_outside_in.txt
index 0f6cd358e2..4086fd0cbd 100644
--- a/railties/doc/guides/source/routing_outside_in.txt
+++ b/railties/doc/guides/source/routing_outside_in.txt
@@ -424,7 +424,7 @@ In this case, all of the normal routes except the route for +destroy+ (a +DELETE
In addition to an action or a list of actions, you can also supply the special symbols +:all+ or +:none+ to the +:only+ and +:except+ options.
-TIP: If your application has many RESTful routes, using +:only+ and +:accept+ to generate only the routes that you actually need can cut down on memory use and speed up the routing process.
+TIP: If your application has many RESTful routes, using +:only+ and +:except+ to generate only the routes that you actually need can cut down on memory use and speed up the routing process.
=== Nested Resources