aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/getting_started.textile
diff options
context:
space:
mode:
authorJason Noble & Ralph Shnelvar <perlwizard@gmail.com>2011-07-24 15:39:22 -0600
committerJason Noble & Ralph Shnelvar <perlwizard@gmail.com>2011-07-24 15:39:22 -0600
commitfe5cb7c521d9cc452454fea4146af173cfe82c94 (patch)
treee1318eab6e11c5cb01e3a218dd4e3fcaf248cf3a /railties/guides/source/getting_started.textile
parent715c128e6a454addbb95df17dbc14cb3780bcea6 (diff)
downloadrails-fe5cb7c521d9cc452454fea4146af173cfe82c94.tar.gz
rails-fe5cb7c521d9cc452454fea4146af173cfe82c94.tar.bz2
rails-fe5cb7c521d9cc452454fea4146af173cfe82c94.zip
Update wording of TIP about --database option for rails new
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r--railties/guides/source/getting_started.textile12
1 files changed, 6 insertions, 6 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index b01576b85c..4c61cae0cb 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -397,12 +397,12 @@ development:
Change the username and password in the +development+ section as appropriate.
-TIP: You don't have to update the database configurations manually. If you had a
-look at the options of application generator, you have seen that one of them is
-named <tt>--database</tt>. It lets you choose an adapter for couple of most used
-relational databases. You can even run the generator repeatedly: <tt>cd .. &&
-rails new blog --database=mysql</tt>. When you confirm the overwriting of the
-+config/database.yml+ file, your application will be configured for MySQL
+TIP: You don't have to update the database configurations manually. If you look at the
+options of the application generator, you will see that one of the options
+is named <tt>--database</tt>. This option allows you to choose an adapter from a
+list of the most used relational databases. You can even run the generator
+repeatedly: <tt>cd .. && rails new blog --database=mysql</tt>. When you confirm the overwriting
+ of the +config/database.yml+ file, your application will be configured for MySQL
instead of SQLite.
h4. Creating the Database