From 44043298fa615c956914ada3c730a4c7fe489624 Mon Sep 17 00:00:00 2001 From: "Eileen M. Uchitelle" Date: Tue, 22 Oct 2019 09:39:33 -0500 Subject: [PATCH] Merge pull request #37509 from mikong/update-welcome-aboard-guides Update Welcome Aboard text in Guides [ci skip] --- guides/source/getting_started.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index 7000fa408c..ba0dd451ff 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -217,7 +217,7 @@ This will fire up Puma, a web server distributed with Rails by default. To see your application in action, open a browser window and navigate to . You should see the Rails default information page: -![Welcome aboard screenshot](images/getting_started/rails_welcome.png) +![Yay! You're on Rails! screenshot](images/getting_started/rails_welcome.png) TIP: To stop the web server, hit Ctrl+C in the terminal window where it's 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 restart the server; changes you make in files will be automatically picked up by the server. -The "Welcome aboard" page is the _smoke test_ for a new Rails application: it -makes sure that you have your software configured correctly enough to serve a -page. +The "Yay! You're on Rails!" page is the _smoke test_ for a new Rails +application: it makes sure that you have your software configured correctly +enough to serve a page. ### Say "Hello", Rails @@ -291,7 +291,7 @@ of code: Now that we have made the controller and view, we need to tell Rails when we want "Hello, Rails!" to show up. In our case, we want it to show up when we navigate to the root URL of our site, . At the moment, -"Welcome aboard" is occupying that spot. +"Yay! You're on Rails!" is occupying that spot. Next, you have to tell Rails where your actual home page is located. -- GitLab