aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorMatthew Nicholas Bradley <matthew@matthewbradley.me>2014-02-07 14:03:39 +0000
committerMatthew Nicholas Bradley <matthew@matthewbradley.me>2014-02-07 14:03:39 +0000
commitbb87c16ad92c13ca91d8e349c0f0b277431b81af (patch)
tree29de1a893cf2902bb95331d5da8a0cfb36391393 /guides/source/getting_started.md
parente3d81945826083756de383612c3afbbdda8e1392 (diff)
downloadrails-bb87c16ad92c13ca91d8e349c0f0b277431b81af.tar.gz
rails-bb87c16ad92c13ca91d8e349c0f0b277431b81af.tar.bz2
rails-bb87c16ad92c13ca91d8e349c0f0b277431b81af.zip
Fix wordy sentence
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md11
1 files changed, 5 insertions, 6 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index bdb1a61bfb..738bf0be4d 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -367,12 +367,11 @@ styling for it afterwards.
### Laying down the ground work
-The first thing that you are going to need to create a new article within the
-application is a place to do that. A great place for that would be at
-`/articles/new`.
-With the route already defined, requests can now be made to `/articles/new` in
-the application. Navigate to <http://localhost:3000/articles/new> and you'll see
-a routing error:
+Firstly, you need a place within the application to create a new article. A
+great place for that would be at `/articles/new`. With the route already
+defined, requests can now be made to `/articles/new` in the application.
+Navigate to <http://localhost:3000/articles/new> and you'll see a routing
+error:
![Another routing error, uninitialized constant ArticlesController](images/getting_started/routing_error_no_controller.png)