diff options
author | Soon Van <cog@randomecho.com> | 2014-01-05 18:42:14 -0500 |
---|---|---|
committer | Soon Van <cog@randomecho.com> | 2014-01-05 18:42:14 -0500 |
commit | 44473e49a8dce2f899ccc1dc55874c4222ec6357 (patch) | |
tree | 98c91d1d4532376638cd1f7690d5a5b4b19996ff /guides | |
parent | 3a48b83e5eec62a5d2bfab1a118c24b45345388c (diff) | |
download | rails-44473e49a8dce2f899ccc1dc55874c4222ec6357.tar.gz rails-44473e49a8dce2f899ccc1dc55874c4222ec6357.tar.bz2 rails-44473e49a8dce2f899ccc1dc55874c4222ec6357.zip |
Ruby is a proper noun here, not part of code fragment [ci skip]
Last line of note also relates heavily to first part
and parenthesis broke reading flow.
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/getting_started.md | 6 |
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: |