aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/contributing_to_ruby_on_rails.md
diff options
context:
space:
mode:
authorKatie Oldaker <k.oldaker@modcloth.com>2012-12-07 16:31:27 -0500
committerKatie Oldaker <k.oldaker@modcloth.com>2012-12-07 16:32:06 -0500
commitfc6336d1bed794681b09cc10c80182cd457fb414 (patch)
treeae2965e7b427dbf67417a9a8a21cba7eda5982fc /guides/source/contributing_to_ruby_on_rails.md
parent38db4e2ca9902a57ae45422cba9cccbfc3e912b6 (diff)
downloadrails-fc6336d1bed794681b09cc10c80182cd457fb414.tar.gz
rails-fc6336d1bed794681b09cc10c80182cd457fb414.tar.bz2
rails-fc6336d1bed794681b09cc10c80182cd457fb414.zip
Punctuation, capitalization, grammar fixes in rails guides
Diffstat (limited to 'guides/source/contributing_to_ruby_on_rails.md')
-rw-r--r--guides/source/contributing_to_ruby_on_rails.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/contributing_to_ruby_on_rails.md b/guides/source/contributing_to_ruby_on_rails.md
index 1e0cb6ee4a..ce2a5a4902 100644
--- a/guides/source/contributing_to_ruby_on_rails.md
+++ b/guides/source/contributing_to_ruby_on_rails.md
@@ -91,7 +91,7 @@ You can invoke `test_jdbcmysql`, `test_jdbcsqlite3` or `test_jdbcpostgresql` als
The test suite runs with warnings enabled. Ideally, Ruby on Rails should issue no warnings, but there may be a few, as well as some from third-party libraries. Please ignore (or fix!) them, if any, and submit patches that do not issue new warnings.
-As of this writing (December, 2010) they are specially noisy with Ruby 1.9. If you are sure about what you are doing and would like to have a more clear output, there's a way to override the flag:
+As of this writing (December, 2010) they are especially noisy with Ruby 1.9. If you are sure about what you are doing and would like to have a more clear output, there's a way to override the flag:
```bash
$ RUBYOPT=-W0 bundle exec rake test
@@ -205,7 +205,7 @@ TIP: Changes that are cosmetic in nature and do not add anything substantial to
### Follow the Coding Conventions
-Rails follows a simple set of coding style conventions.
+Rails follows a simple set of coding style conventions:
* Two spaces, no tabs (for indentation).
* No trailing whitespace. Blank lines should not have any spaces.