diff options
author | George Claghorn <george.claghorn@gmail.com> | 2018-03-16 19:41:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-16 19:41:34 -0400 |
commit | ef73318e29666786feb00e9e9b3b49a771bb0b73 (patch) | |
tree | 843719d0a41d07697342289a7bc333f47a3c8d3a | |
parent | 9700dacffe412ea47b00db62c0a0099b69b4dfca (diff) | |
parent | aa8f51b97c262edbf4f020250613e27f51e83bf8 (diff) | |
download | rails-ef73318e29666786feb00e9e9b3b49a771bb0b73.tar.gz rails-ef73318e29666786feb00e9e9b3b49a771bb0b73.tar.bz2 rails-ef73318e29666786feb00e9e9b3b49a771bb0b73.zip |
Merge pull request #32275 from elainefang/fix-grammar
Fix grammar in Getting Started with Rails
-rw-r--r-- | guides/source/getting_started.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index f545b90103..5b6cfe6659 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -1125,7 +1125,7 @@ TIP: Rails automatically wraps fields that contain an error with a div with class `field_with_errors`. You can define a CSS rule to make them standout. -Now you'll get a nice error message when saving an article without title when +Now you'll get a nice error message when saving an article without a title when you attempt to do just that on the new article form <http://localhost:3000/articles/new>: @@ -1522,7 +1522,7 @@ comments on articles. ### Generating a Model We're going to see the same generator that we used before when creating -the `Article` model. This time we'll create a `Comment` model to hold +the `Article` model. This time we'll create a `Comment` model to hold a reference to an article. Run this command in your terminal: ```bash @@ -1857,7 +1857,7 @@ This will now render the partial in `app/views/comments/_comment.html.erb` once for each comment that is in the `@article.comments` collection. As the `render` method iterates over the `@article.comments` collection, it assigns each comment to a local variable named the same as the partial, in this case -`comment` which is then available in the partial for us to show. +`comment`, which is then available in the partial for us to show. ### Rendering a Partial Form @@ -2060,7 +2060,7 @@ What's Next? Now that you've seen your first Rails application, you should feel free to update it and experiment on your own. -Remember you don't have to do everything without help. As you need assistance +Remember, you don't have to do everything without help. As you need assistance getting up and running with Rails, feel free to consult these support resources: |