aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-03-22 16:20:43 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-03-22 16:20:43 -0300
commit6a8d3e6ba0ece2e182c430bf44837f86fa93acba (patch)
treede2a2e4e78e1b62d8ac822b55ba243fa92e510c3
parentd85c52d203cb0199e84b564e73ca247fc0746dcb (diff)
parent47a07560a126f4b63a00b8ed743ccda58dc37029 (diff)
downloadrails-6a8d3e6ba0ece2e182c430bf44837f86fa93acba.tar.gz
rails-6a8d3e6ba0ece2e182c430bf44837f86fa93acba.tar.bz2
rails-6a8d3e6ba0ece2e182c430bf44837f86fa93acba.zip
Merge pull request #19461 from mechanicles/change-a-to-an
Change 'a' to 'an' for 'HABTM' word [ci skip]
-rw-r--r--guides/source/active_record_migrations.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_migrations.md b/guides/source/active_record_migrations.md
index ff0235b135..a2b7b7a818 100644
--- a/guides/source/active_record_migrations.md
+++ b/guides/source/active_record_migrations.md
@@ -357,7 +357,7 @@ will append `ENGINE=BLACKHOLE` to the SQL statement used to create the table
### Creating a Join Table
-Migration method `create_join_table` creates a HABTM join table. A typical use
+Migration method `create_join_table` creates an HABTM join table. A typical use
would be:
```ruby