aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-01-05 16:41:32 -0800
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-01-05 16:41:32 -0800
commitd2cee1e4cc177fae5e4f8b9a4b84df0835417bb4 (patch)
tree98c91d1d4532376638cd1f7690d5a5b4b19996ff /guides
parent3a48b83e5eec62a5d2bfab1a118c24b45345388c (diff)
parent44473e49a8dce2f899ccc1dc55874c4222ec6357 (diff)
downloadrails-d2cee1e4cc177fae5e4f8b9a4b84df0835417bb4.tar.gz
rails-d2cee1e4cc177fae5e4f8b9a4b84df0835417bb4.tar.bz2
rails-d2cee1e4cc177fae5e4f8b9a4b84df0835417bb4.zip
Merge pull request #13604 from randomecho/docs-getting-started
Ruby is a proper noun here, not part of code fragment [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/getting_started.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 0634c93712..fca6d41a1b 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -388,9 +388,9 @@ It's inside this class that you'll define methods that will become the actions
for this controller. These actions will perform CRUD operations on the posts
within our system.
-NOTE: There are `public`, `private` and `protected` methods in `Ruby`
-(for more details you can check on [Programming Ruby](http://www.ruby-doc.org/docs/ProgrammingRuby/)).
-But only `public` methods can be actions for controllers.
+NOTE: There are `public`, `private` and `protected` methods in Ruby,
+but only `public` methods can be actions for controllers.
+For more details check out [Programming Ruby](http://www.ruby-doc.org/docs/ProgrammingRuby/).
If you refresh <http://localhost:3000/posts/new> now, you'll get a new error: