aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-02-07 01:34:12 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-02-07 01:34:12 +0530
commitcc2b2719d87a7c3a81fe810211ab39755aec1a8f (patch)
tree8c677e402e074dd2e8a91810547cffcff59f0b97 /railties/guides/source
parent742f5f4a5d0deec132d2bfed53706e05d51871cb (diff)
downloadrails-cc2b2719d87a7c3a81fe810211ab39755aec1a8f.tar.gz
rails-cc2b2719d87a7c3a81fe810211ab39755aec1a8f.tar.bz2
rails-cc2b2719d87a7c3a81fe810211ab39755aec1a8f.zip
fix minor typo
Diffstat (limited to 'railties/guides/source')
-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 82700532c0..52e398a497 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -411,7 +411,7 @@ Rails will execute this migration command and tell you it created the Posts tabl
== CreatePosts: migrated (0.0020s) ===========================================
</shell>
-NOTE. Because you're working in the development environment by default, this command will apply to the database defined in the +development+ section of your +config/database.yml+ file. If you would like to execute migrations in other environment, for instance in production, you must explicitely pass it when invoking the command: <tt>rake db:migrate RAILS_ENV=production</tt>.
+NOTE. Because you're working in the development environment by default, this command will apply to the database defined in the +development+ section of your +config/database.yml+ file. If you would like to execute migrations in other environment, for instance in production, you must explicitly pass it when invoking the command: <tt>rake db:migrate RAILS_ENV=production</tt>.
h4. Adding a Link