Skip to content

Commit 9655240

Browse files
Merge pull request rails#44462 from Yunique33/patch-1
Update getting_started.md [ci-skip]
2 parents 97bb0a9 + 0bbfa88 commit 9655240

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

guides/source/getting_started.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ and see our text displayed!
308308

309309
### Setting the Application Home Page
310310

311-
At the moment, <http://localhost:3000> still displays "Yay! You're on Rails!".
311+
At the moment, <http://localhost:3000> still displays a page with the Ruby on Rails logo.
312312
Let's display our "Hello, Rails!" text at <http://localhost:3000> as well. To do
313313
so, we will add a route that maps the *root path* of our application to the
314314
appropriate controller and action.
@@ -1442,15 +1442,14 @@ controller. Again, we'll use the same generator we used before:
14421442
$ bin/rails generate controller Comments
14431443
```
14441444

1445-
This creates four files and one empty directory:
1445+
This creates three files and one empty directory:
14461446

14471447
| File/Directory | Purpose |
14481448
| -------------------------------------------- | ---------------------------------------- |
14491449
| app/controllers/comments_controller.rb | The Comments controller |
14501450
| app/views/comments/ | Views of the controller are stored here |
14511451
| test/controllers/comments_controller_test.rb | The test for the controller |
14521452
| app/helpers/comments_helper.rb | A view helper file |
1453-
| app/assets/stylesheets/comments.scss | Cascading style sheet for the controller |
14541453

14551454
Like with any blog, our readers will create their comments directly after
14561455
reading the article, and once they have added their comment, will be sent back

0 commit comments

Comments
 (0)