aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-24 20:22:50 -0700
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-09-24 20:22:50 -0700
commit1acef69aa65e3bc502128dddbaa93e2de108f99b (patch)
tree6e6c4324f1a00ad81f84eb83a44c8536f8cb3061
parent0cc4ff77cca24dddeb9af42056ca735e588ce098 (diff)
parentdd66761a33140eb7bf5a9e9cd255f20e52c62586 (diff)
downloadrails-1acef69aa65e3bc502128dddbaa93e2de108f99b.tar.gz
rails-1acef69aa65e3bc502128dddbaa93e2de108f99b.tar.bz2
rails-1acef69aa65e3bc502128dddbaa93e2de108f99b.zip
Merge pull request #12351 from francisgo/patch-2
Getting Started Guide: Hello Rails! -> Hello, Rails! and wrap code tag
-rw-r--r--guides/source/getting_started.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index d5444af002..5576b23d91 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -262,7 +262,7 @@ of code:
### Setting the Application Home Page
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
+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, <http://localhost:3000>. At the moment,
"Welcome Aboard" is occupying that spot.