@@ -217,7 +217,7 @@ This will fire up Puma, a web server distributed with Rails by default. To see
217
217
your application in action, open a browser window and navigate to
218
218
< http://localhost:3000 > . You should see the Rails default information page:
219
219
220
- ![ Welcome aboard screenshot] ( images/getting_started/rails_welcome.png )
220
+ ![ Yay! You're on Rails! screenshot] ( images/getting_started/rails_welcome.png )
221
221
222
222
TIP: To stop the web server, hit Ctrl+C in the terminal window where it's
223
223
running. To verify the server has stopped you should see your command prompt
@@ -226,9 +226,9 @@ dollar sign `$`. In development mode, Rails does not generally require you to
226
226
restart the server; changes you make in files will be automatically picked up by
227
227
the server.
228
228
229
- The "Welcome aboard " page is the _ smoke test_ for a new Rails application: it
230
- makes sure that you have your software configured correctly enough to serve a
231
- page.
229
+ The "Yay! You're on Rails! " page is the _ smoke test_ for a new Rails
230
+ application: it makes sure that you have your software configured correctly
231
+ enough to serve a page.
232
232
233
233
### Say "Hello", Rails
234
234
@@ -291,7 +291,7 @@ of code:
291
291
Now that we have made the controller and view, we need to tell Rails when we
292
292
want "Hello, Rails!" to show up. In our case, we want it to show up when we
293
293
navigate to the root URL of our site, < http://localhost:3000 > . At the moment,
294
- "Welcome aboard " is occupying that spot.
294
+ "Yay! You're on Rails! " is occupying that spot.
295
295
296
296
Next, you have to tell Rails where your actual home page is located.
297
297
0 commit comments