aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/migrations/rakeing_around.txt
diff options
context:
space:
mode:
Diffstat (limited to 'railties/doc/guides/migrations/rakeing_around.txt')
-rw-r--r--railties/doc/guides/migrations/rakeing_around.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/doc/guides/migrations/rakeing_around.txt b/railties/doc/guides/migrations/rakeing_around.txt
index f6392f044d..5328941602 100644
--- a/railties/doc/guides/migrations/rakeing_around.txt
+++ b/railties/doc/guides/migrations/rakeing_around.txt
@@ -71,7 +71,7 @@ class CreateProducts < ActiveRecord::Migration
t.timestamps
end
end
- say "we created a table"
+ say "Created a table"
suppress_messages {add_index :products, :name}
say "and an index!", true
say_with_time 'Waiting for a while' do
@@ -89,7 +89,7 @@ end
generates the following output
----------------------
== 20080906170109 CreateProducts: migrating ===================================
--- we created a table
+-- Created a table
-> and an index!
-- Waiting for a while
-> 10.0001s