diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2012-03-14 19:31:38 -0700 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2012-03-14 19:31:52 -0700 |
commit | 7ea1755998c83595161bb2d39bf7a553080be8f5 (patch) | |
tree | 58e649e13392ed9fac3de2d6c83b0a8625a7c4a5 /railties | |
parent | 507dba67c425f185c49bbb751707e81cfd3e0b9c (diff) | |
download | rails-7ea1755998c83595161bb2d39bf7a553080be8f5.tar.gz rails-7ea1755998c83595161bb2d39bf7a553080be8f5.tar.bz2 rails-7ea1755998c83595161bb2d39bf7a553080be8f5.zip |
[getting started] rename initial 'meat' section of guide to 'Laying down the ground work'
This section involves a medium amount of setup and explanation (for the end user's own good!). It's not really about creating a post... that's for the *next* section
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/getting_started.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index ece017ae03..35608333eb 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -221,7 +221,7 @@ In the next section, you will add the ability to create new posts in your applic It will look a little basic for now, but that's ok. We'll look at improving the styling for it afterwards. -h4. Creating Posts +h4. Laying down the ground work The first thing that you are going to need to create a new post within the application is a place to do that. A great place for that would be at +/posts/new+. If you attempt to navigate to that now -- by visiting "http://localhost:3000/posts/new":http://localhost:3000/posts/new -- Rails will give you a routing error: |