Skip to content

Commit 4404329

Browse files
committed
Merge pull request rails#37509 from mikong/update-welcome-aboard-guides
Update Welcome Aboard text in Guides [ci skip]
1 parent c0c057e commit 4404329

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

guides/source/getting_started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ This will fire up Puma, a web server distributed with Rails by default. To see
217217
your application in action, open a browser window and navigate to
218218
<http://localhost:3000>. You should see the Rails default information page:
219219

220-
![Welcome aboard screenshot](images/getting_started/rails_welcome.png)
220+
![Yay! You're on Rails! screenshot](images/getting_started/rails_welcome.png)
221221

222222
TIP: To stop the web server, hit Ctrl+C in the terminal window where it's
223223
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
226226
restart the server; changes you make in files will be automatically picked up by
227227
the server.
228228

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.
232232

233233
### Say "Hello", Rails
234234

@@ -291,7 +291,7 @@ of code:
291291
Now that we have made the controller and view, we need to tell Rails when we
292292
want "Hello, Rails!" to show up. In our case, we want it to show up when we
293293
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.
295295

296296
Next, you have to tell Rails where your actual home page is located.
297297

0 commit comments

Comments
 (0)