aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Dawson <dpdawson@dpdawson.org>2013-07-08 22:56:09 +0100
committerDaniel Dawson <dpdawson@dpdawson.org>2013-07-08 22:56:09 +0100
commite863410b5838ee17de077f301b2d6aea9668bb23 (patch)
treecce9b0beef14e950f6c17fa5463bc40871639a68
parent24c4195bab27ed9d76d0e126044e7f932de9e30e (diff)
downloadrails-e863410b5838ee17de077f301b2d6aea9668bb23.tar.gz
rails-e863410b5838ee17de077f301b2d6aea9668bb23.tar.bz2
rails-e863410b5838ee17de077f301b2d6aea9668bb23.zip
Fix a grammatical error/typo in Active Record Migrations guide. [ci skip]
-rw-r--r--guides/source/migrations.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/migrations.md b/guides/source/migrations.md
index f191b110cd..e6d1e71f5e 100644
--- a/guides/source/migrations.md
+++ b/guides/source/migrations.md
@@ -376,7 +376,7 @@ create_join_table :products, :categories, column_options: {null: true}
will create the `product_id` and `category_id` with the `:null` option as
`true`.
-You can pass the option `:table_name` with you want to customize the table
+You can pass the option `:table_name` when you want to customize the table
name. For example,
```ruby