aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authornosolopau <pau@nosolopau.com>2010-11-20 04:23:31 -0800
committerXavier Noria <fxn@hashref.com>2010-11-21 03:29:44 +0100
commitf975f35147d7d6df7f6094bfd60e3b7dd45aa2b3 (patch)
tree632d21441921a7e41a349beeb7323d461cfdb048 /railties/guides/source
parent925aeed4b61141cc62dec42b0b577158f077ffc1 (diff)
downloadrails-f975f35147d7d6df7f6094bfd60e3b7dd45aa2b3.tar.gz
rails-f975f35147d7d6df7f6094bfd60e3b7dd45aa2b3.tar.bz2
rails-f975f35147d7d6df7f6094bfd60e3b7dd45aa2b3.zip
Spelling mistake: "Projecto" instead of "projeto"
Diffstat (limited to 'railties/guides/source')
-rw-r--r--railties/guides/source/3_0_release_notes.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/3_0_release_notes.textile b/railties/guides/source/3_0_release_notes.textile
index 9c08c9fa0a..2d9655fa7a 100644
--- a/railties/guides/source/3_0_release_notes.textile
+++ b/railties/guides/source/3_0_release_notes.textile
@@ -271,10 +271,10 @@ end
<ruby>
scope 'es' do
- resources :projects, :path_names => { :edit => 'cambiar' }, :path => 'projeto'
+ resources :projects, :path_names => { :edit => 'cambiar' }, :path => 'projecto'
end
-# Gives you the edit action with /es/projeto/1/cambiar
+# Gives you the edit action with /es/projecto/1/cambiar
</ruby>
* Added +root+ method to the router as a short cut for <tt>match '/', :to => path</tt>.