diff options
author | Francis Go <francis.go@gmail.com> | 2013-09-25 13:19:30 +1000 |
---|---|---|
committer | Francis Go <francis.go@gmail.com> | 2013-09-25 13:19:30 +1000 |
commit | dd66761a33140eb7bf5a9e9cd255f20e52c62586 (patch) | |
tree | 6e6c4324f1a00ad81f84eb83a44c8536f8cb3061 | |
parent | 0cc4ff77cca24dddeb9af42056ca735e588ce098 (diff) | |
download | rails-dd66761a33140eb7bf5a9e9cd255f20e52c62586.tar.gz rails-dd66761a33140eb7bf5a9e9cd255f20e52c62586.tar.bz2 rails-dd66761a33140eb7bf5a9e9cd255f20e52c62586.zip |
Getting Started Guide: Hello Rails! -> Hello, Rails! and wrap code tag
-rw-r--r-- | guides/source/getting_started.md | 2 |
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. |