diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-03-22 16:20:43 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2015-03-22 16:20:43 -0300 |
commit | 6a8d3e6ba0ece2e182c430bf44837f86fa93acba (patch) | |
tree | de2a2e4e78e1b62d8ac822b55ba243fa92e510c3 | |
parent | d85c52d203cb0199e84b564e73ca247fc0746dcb (diff) | |
parent | 47a07560a126f4b63a00b8ed743ccda58dc37029 (diff) | |
download | rails-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.md | 2 |
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 |