aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-06-08 06:47:22 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-06-08 06:47:22 +0530
commit5c53754f330219bd32d5793e71f516fba62f32bf (patch)
tree7d571c81b0585b379240ef0781ee0959fd10911f /railties/guides
parent18d84e50a209bfb54bdd4621bfa3a9ec62afeac8 (diff)
downloadrails-5c53754f330219bd32d5793e71f516fba62f32bf.tar.gz
rails-5c53754f330219bd32d5793e71f516fba62f32bf.tar.bz2
rails-5c53754f330219bd32d5793e71f516fba62f32bf.zip
fix generators guide url
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/command_line.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/command_line.textile b/railties/guides/source/command_line.textile
index 5fe9ad101b..2fe5be43b1 100644
--- a/railties/guides/source/command_line.textile
+++ b/railties/guides/source/command_line.textile
@@ -5,7 +5,7 @@ Rails comes with every command line tool you'll need to
* Create a Rails application
* Generate models, controllers, database migrations, and unit tests
* Start a development server
-* Mess with objects through an interactive shell
+* Experiment with objects through an interactive shell
* Profile and benchmark your new creation
endprologue.
@@ -507,7 +507,7 @@ $ rails server mongrel
h4. The Rails Generation: Generators
-INFO: For a good rundown on generators, see "Understanding Generators":http://wiki.rubyonrails.org/rails/pages/UnderstandingGenerators. A lot of its material is presented here.
+INFO: For a good rundown on generators, see "Understanding Generators":generators.html. A lot of its material is presented here.
Generators are code that generates code. Let's experiment by building one. Our generator will generate a text file.