aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/testing.textile
diff options
context:
space:
mode:
authorEvan Farrar <evanfarrar@gmail.com>2009-05-07 15:24:07 -0500
committerEvan Farrar <evanfarrar@gmail.com>2009-05-07 15:24:07 -0500
commitd3b3eb59b7dbfd9722bcbc378b1ab92d3f4cebb5 (patch)
tree15aff9140244f625148e24afb3b1f06bb3004d7c /railties/guides/source/testing.textile
parentd2e8cdea2ca78203cae606cf8402faa3858c4a7f (diff)
downloadrails-d3b3eb59b7dbfd9722bcbc378b1ab92d3f4cebb5.tar.gz
rails-d3b3eb59b7dbfd9722bcbc378b1ab92d3f4cebb5.tar.bz2
rails-d3b3eb59b7dbfd9722bcbc378b1ab92d3f4cebb5.zip
Fixes some typos in the guides.
Diffstat (limited to 'railties/guides/source/testing.textile')
-rw-r--r--railties/guides/source/testing.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/testing.textile b/railties/guides/source/testing.textile
index 1776c77927..43851e6659 100644
--- a/railties/guides/source/testing.textile
+++ b/railties/guides/source/testing.textile
@@ -211,7 +211,7 @@ $ rake db:migrate
$ rake db:test:load
</shell>
-Above +rake db:migrate+ runs any pending migrations on the _developemnt_ environment and updates +db/schema.rb+. +rake db:test:load+ recreates the test database from the current db/schema.rb. On subsequent attempts it is a good to first run +db:test:prepare+ as it first checks for pending migrations and warns you appropriately.
+Above +rake db:migrate+ runs any pending migrations on the _development_ environment and updates +db/schema.rb+. +rake db:test:load+ recreates the test database from the current db/schema.rb. On subsequent attempts it is a good to first run +db:test:prepare+ as it first checks for pending migrations and warns you appropriately.
NOTE: +db:test:prepare+ will fail with an error if db/schema.rb doesn't exists.