aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/association_basics.textile
diff options
context:
space:
mode:
authorEvan Farrar <evanfarrar@gmail.com>2011-07-23 13:57:56 -0400
committerEvan Farrar <evanfarrar@gmail.com>2011-07-23 13:57:56 -0400
commit66b4d112363f3786ecfe4b28d2b00bdcde7e706f (patch)
treeb80bb5179f82cea20a811d4df19361cff8509c4d /railties/guides/source/association_basics.textile
parent662a71b09f025016db223991017df9a179f42ff4 (diff)
downloadrails-66b4d112363f3786ecfe4b28d2b00bdcde7e706f.tar.gz
rails-66b4d112363f3786ecfe4b28d2b00bdcde7e706f.tar.bz2
rails-66b4d112363f3786ecfe4b28d2b00bdcde7e706f.zip
Changed several instances of British English to be American English
Diffstat (limited to 'railties/guides/source/association_basics.textile')
-rw-r--r--railties/guides/source/association_basics.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/association_basics.textile b/railties/guides/source/association_basics.textile
index 3c2497e83a..ce4ff0389d 100644
--- a/railties/guides/source/association_basics.textile
+++ b/railties/guides/source/association_basics.textile
@@ -443,7 +443,7 @@ class CreateAssemblyPartJoinTable < ActiveRecord::Migration
end
</ruby>
-We pass +:id => false+ to +create_table+ because that table does not represent a model. That's required for the association to work properly. If you observe any strange behaviour in a +has_and_belongs_to_many+ association like mangled models IDs, or exceptions about conflicting IDs chances are you forgot that bit.
+We pass +:id => false+ to +create_table+ because that table does not represent a model. That's required for the association to work properly. If you observe any strange behavior in a +has_and_belongs_to_many+ association like mangled models IDs, or exceptions about conflicting IDs chances are you forgot that bit.
h4. Controlling Association Scope