aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc
diff options
context:
space:
mode:
authorJames Miller <jkmiller@jk1.local>2008-09-11 07:58:15 -0700
committerJames Miller <jkmiller@jk1.local>2008-09-11 07:58:15 -0700
commit02220e5bce4ca8b13ba54bc93fe5bca00c7a05a6 (patch)
tree18f0694194f9d6571a555dfa7dfa0708eb5d4b61 /railties/doc
parentd551d9e68bdd9cb1ef5d0e552646576d035f8204 (diff)
downloadrails-02220e5bce4ca8b13ba54bc93fe5bca00c7a05a6.tar.gz
rails-02220e5bce4ca8b13ba54bc93fe5bca00c7a05a6.tar.bz2
rails-02220e5bce4ca8b13ba54bc93fe5bca00c7a05a6.zip
Fixing some typos
Diffstat (limited to 'railties/doc')
-rw-r--r--railties/doc/guides/getting_started_with_rails/getting_started_with_rails.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/railties/doc/guides/getting_started_with_rails/getting_started_with_rails.txt b/railties/doc/guides/getting_started_with_rails/getting_started_with_rails.txt
index b0a1286ad2..c247d417f1 100644
--- a/railties/doc/guides/getting_started_with_rails/getting_started_with_rails.txt
+++ b/railties/doc/guides/getting_started_with_rails/getting_started_with_rails.txt
@@ -1,7 +1,7 @@
Getting Started With Rails
==========================
-This guide covers getting up and running with Ruby on Rails. After reading, you should be familiar with:
+This guide covers getting up and running with Ruby on Rails. After reading it, you should be familiar with:
* Installing Rails, create a new Rails application, and connect your application to a database
* Understanding the purpose of each folder in the Rails structure
@@ -27,7 +27,7 @@ From your terminal, type:
`rails blog`
-This will create the a folder in your working directory called "blog". Open up that folder and have a look. For the majority of this tutorial, we will live in the app/ folder, but here's a basic rundown on the function of each folder in a Rails app:
+This will create a folder in your working directory called "blog". Open up that folder and have a look. For the majority of this tutorial, we will live in the app/ folder, but here's a basic rundown on the function of each folder in a Rails app:
[grid="all"]
`-----------`-----------------------------------------------------------------------------------------------------------------------------
@@ -35,7 +35,7 @@ File/Folder Purpose
------------------------------------------------------------------------------------------------------------------------------------------
README This is a brief instruction manual for your application. Use it to tell others what it does, how to set it up, etc.
Rakefile
-app/ Contains the controllers, models, and views for your application. We'll focus on on the app folder in this guide
+app/ Contains the controllers, models, and views for your application. We'll focus on the app folder in this guide
config/ Configure your application's runtime rules, routes, database, etc.
db/ Shows your current database schema, as well as the database migrations (we'll get into migrations shortly)
doc/ In-depth documentation for your application
@@ -86,7 +86,7 @@ Because we're using SQLite, there's really nothing else you need to do to setup
.MySQL Tip
*******************************
-If you want to skip directly to using MySQL on your development machine, type the following will get you setup with a MySQL configuration file that assumes MySQL is running locally and that the root password is blank:
+If you want to skip directly to using MySQL on your development machine, typing the following will get you setup with a MySQL configuration file that assumes MySQL is running locally and that the root password is blank:
`rails blog -d mysql`