aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorDavid Peckham <dave.peckham@me.com>2011-09-02 13:38:13 -0700
committerDavid Peckham <dave.peckham@me.com>2011-09-02 13:38:20 -0700
commitb3a03253a78234dfc3bef0fab7dae2e49c2bfd2a (patch)
tree8e9130175fc43016364647c1cd16157943c5d174 /railties/guides
parentf83f169b85eea4f580ae95609506fbb3cc5b8ccb (diff)
downloadrails-b3a03253a78234dfc3bef0fab7dae2e49c2bfd2a.tar.gz
rails-b3a03253a78234dfc3bef0fab7dae2e49c2bfd2a.tar.bz2
rails-b3a03253a78234dfc3bef0fab7dae2e49c2bfd2a.zip
Fixed a typo in the section about migration.
Diffstat (limited to 'railties/guides')
-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 256df0eded..6e9613cdae 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -592,7 +592,7 @@ class CreatePosts < ActiveRecord::Migration
end
</ruby>
-The above migration creates a method name +change+ which will be called when you
+The above migration creates a method named +change+ which will be called when you
run this migration. The action defined in that method is also reversible, which
means Rails knows how to reverse the change made by this migration, in case you
want to reverse it at later date. By default, when you run this migration it