aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/getting_started.textile
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-02-19 20:27:24 +0100
committerXavier Noria <fxn@hashref.com>2010-02-19 20:27:24 +0100
commit4bd37dadc45ac616117c9cf2b4fbb4c8f890226b (patch)
tree460966ed87672b3d25c7d3b5204ae18052755a90 /railties/guides/source/getting_started.textile
parentd2844b854b57e2e3c8693c796e7296e45a866212 (diff)
downloadrails-4bd37dadc45ac616117c9cf2b4fbb4c8f890226b.tar.gz
rails-4bd37dadc45ac616117c9cf2b4fbb4c8f890226b.tar.bz2
rails-4bd37dadc45ac616117c9cf2b4fbb4c8f890226b.zip
getting started guide: script/generate -> rails generate
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r--railties/guides/source/getting_started.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index 8ddf0cf3cf..ad328c6b51 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -431,7 +431,7 @@ Now you're ready to start working with posts. To do that, navigate to "http://lo
!images/posts_index.png(Posts Index screenshot)!
-This is the result of Rails rendering the +index+ view of your posts. There aren't currently any posts in the database, but if you click the +New Post+ link you can create one. After that, you'll find that you can edit posts, look at their details, or destroy them. All of the logic and HTML to handle this was built by the single +script/generate scaffold+ command.
+This is the result of Rails rendering the +index+ view of your posts. There aren't currently any posts in the database, but if you click the +New Post+ link you can create one. After that, you'll find that you can edit posts, look at their details, or destroy them. All of the logic and HTML to handle this was built by the single +rails generate scaffold+ command.
TIP: In development mode (which is what you're working in by default), Rails reloads your application with every browser request, so there's no need to stop and restart the web server.