diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2016-11-07 07:36:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-07 07:36:03 +0100 |
commit | e91dd52d561e61ec4e41bf01c20d9e1aab579e4a (patch) | |
tree | dae19723d08c3c8dc18d492c9fdece26d5db8317 | |
parent | b67c1778701d2dc65f140407aa758bdc375451e9 (diff) | |
parent | 88aeadb5b3fbc3f20a23f2345655a674a1dfb522 (diff) | |
download | rails-e91dd52d561e61ec4e41bf01c20d9e1aab579e4a.tar.gz rails-e91dd52d561e61ec4e41bf01c20d9e1aab579e4a.tar.bz2 rails-e91dd52d561e61ec4e41bf01c20d9e1aab579e4a.zip |
Merge pull request #26982 from bogdanvlviv/started_guide
Fix 'Getting Started with Rails' [ci skip]
-rw-r--r-- | guides/source/getting_started.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 31d5c4f71d..c04d42d743 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -1655,8 +1655,8 @@ This creates five files and one empty directory: | app/views/comments/ | Views of the controller are stored here | | test/controllers/comments_controller_test.rb | The test for the controller | | app/helpers/comments_helper.rb | A view helper file | -| app/assets/javascripts/comment.coffee | CoffeeScript for the controller | -| app/assets/stylesheets/comment.scss | Cascading style sheet for the controller | +| app/assets/javascripts/comments.coffee | CoffeeScript for the controller | +| app/assets/stylesheets/comments.scss | Cascading style sheet for the controller | Like with any blog, our readers will create their comments directly after reading the article, and once they have added their comment, will be sent back |