aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornosolopau <pau@nosolopau.com>2010-11-20 04:23:31 -0800
committernosolopau <pau@nosolopau.com>2010-11-20 04:23:31 -0800
commit5b86e8f5e9fbc55a04d72113035054c35a400507 (patch)
tree983d88b4dbf0b9e247b4105fc7e04bf4b92e6c70
parentbf78ceb7722c30f94a7fc915d53d123502ae7c1d (diff)
downloadrails-5b86e8f5e9fbc55a04d72113035054c35a400507.tar.gz
rails-5b86e8f5e9fbc55a04d72113035054c35a400507.tar.bz2
rails-5b86e8f5e9fbc55a04d72113035054c35a400507.zip
Spelling mistake: "Projecto" instead of "projeto"
-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>.