aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2008-11-02 14:55:12 +0100
committerXavier Noria <fxn@hashref.com>2008-11-02 14:55:12 +0100
commit86e14e3e2c4801f6d68d178bbcb719f82646b0ba (patch)
tree31c2688c4ab9821844919c2bee662c5c0085c827 /railties
parent09597f7140b3614573481020c980afadb01e4eb8 (diff)
downloadrails-86e14e3e2c4801f6d68d178bbcb719f82646b0ba.tar.gz
rails-86e14e3e2c4801f6d68d178bbcb719f82646b0ba.tar.bz2
rails-86e14e3e2c4801f6d68d178bbcb719f82646b0ba.zip
fixes a typo
Diffstat (limited to 'railties')
-rw-r--r--railties/doc/guides/source/migrations/rakeing_around.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/source/migrations/rakeing_around.txt b/railties/doc/guides/source/migrations/rakeing_around.txt
index 1fcca0cf24..6d8c43d7a3 100644
--- a/railties/doc/guides/source/migrations/rakeing_around.txt
+++ b/railties/doc/guides/source/migrations/rakeing_around.txt
@@ -25,7 +25,7 @@ This will run the `down` method from the latest migration. If you need to undo s
rake db:rollback STEP=3
------------------
-will run the `down` method fron the last 3 migrations.
+will run the `down` method from the last 3 migrations.
The `db:migrate:redo` task is a shortcut for doing a rollback and then migrating back up again. As with the `db:rollback` task you can use the `STEP` parameter if you need to go more than one version back, for example