aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_basics.md
diff options
context:
space:
mode:
authorDaniel Dawson <dpdawson@dpdawson.org>2013-07-08 11:37:45 +0100
committerDaniel Dawson <dpdawson@dpdawson.org>2013-07-08 12:25:10 +0100
commita8b1eca2d837b4d9231ebaa371e6d0ff87749aa2 (patch)
tree2d41179291a7d3450fd5c32294f3aa9c7a0a42d0 /guides/source/active_record_basics.md
parent4be2003778cdfe06ccaaa2a19040e0cf82dcdde3 (diff)
downloadrails-a8b1eca2d837b4d9231ebaa371e6d0ff87749aa2.tar.gz
rails-a8b1eca2d837b4d9231ebaa371e6d0ff87749aa2.tar.bz2
rails-a8b1eca2d837b4d9231ebaa371e6d0ff87749aa2.zip
Fix 2 grammatical errors/typos in Active Record Basics guide. [ci skip]
Diffstat (limited to 'guides/source/active_record_basics.md')
-rw-r--r--guides/source/active_record_basics.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_record_basics.md b/guides/source/active_record_basics.md
index d9fb20f3bf..556c2544ff 100644
--- a/guides/source/active_record_basics.md
+++ b/guides/source/active_record_basics.md
@@ -105,7 +105,7 @@ depending on the purpose of these columns.
Migrations](migrations.html) to create your tables, this column will be
automatically created.
-There are also some optional column names that will create additional features
+There are also some optional column names that will add additional features
to Active Record instances:
* `created_at` - Automatically gets set to the current date and time when the
@@ -343,7 +343,7 @@ Migrations
Rails provides a domain-specific language for managing a database schema called
migrations. Migrations are stored in files which are executed against any
-database that Active Record support using `rake`. Here's a migration that
+database that Active Record supports using `rake`. Here's a migration that
creates a table:
```ruby