aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/contributing_to_ruby_on_rails.md
diff options
context:
space:
mode:
authorJon Moss <me@jonathanmoss.me>2017-03-25 12:17:37 -0400
committerJon Moss <me@jonathanmoss.me>2017-03-25 12:17:37 -0400
commitb8c330cb69c1b4e4cdfe30872db2a36d119b9c1b (patch)
treecf091dfad37c6b302c9e746989be8a80eedd0a05 /guides/source/contributing_to_ruby_on_rails.md
parent430f1e02fafd30a08edfa2b1e8032eb7e0e729cc (diff)
downloadrails-b8c330cb69c1b4e4cdfe30872db2a36d119b9c1b.tar.gz
rails-b8c330cb69c1b4e4cdfe30872db2a36d119b9c1b.tar.bz2
rails-b8c330cb69c1b4e4cdfe30872db2a36d119b9c1b.zip
Small grammar fix
Add necessary commas. [ci skip]
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 fe5437ae5d..9ffc86aa08 100644
--- a/guides/source/contributing_to_ruby_on_rails.md
+++ b/guides/source/contributing_to_ruby_on_rails.md
@@ -98,13 +98,13 @@ Anything you can do to make bug reports more succinct or easier to reproduce hel
### Testing Patches
-You can also help out by examining pull requests that have been submitted to Ruby on Rails via GitHub. To apply someone's changes you need first to create a dedicated branch:
+You can also help out by examining pull requests that have been submitted to Ruby on Rails via GitHub. In order to apply someone's changes, you need to first create a dedicated branch:
```bash
$ git checkout -b testing_branch
```
-Then you can use their remote branch to update your codebase. For example, let's say the GitHub user JohnSmith has forked and pushed to a topic branch "orange" located at https://github.com/JohnSmith/rails.
+Then, you can use their remote branch to update your codebase. For example, let's say the GitHub user JohnSmith has forked and pushed to a topic branch "orange" located at https://github.com/JohnSmith/rails.
```bash
$ git remote add JohnSmith https://github.com/JohnSmith/rails.git