aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Noble <perlwizard@gmail.com>2011-12-03 19:16:20 -0700
committerJason Noble <perlwizard@gmail.com>2011-12-03 19:31:43 -0700
commiteedb86367483845fd383c5d74b4e677ef4563f59 (patch)
tree7918530c14c0051f4ac2089d930d37806940f3fb
parent74807383aab8ec42210153a81a36436eed70f656 (diff)
downloadrails-eedb86367483845fd383c5d74b4e677ef4563f59.tar.gz
rails-eedb86367483845fd383c5d74b4e677ef4563f59.tar.bz2
rails-eedb86367483845fd383c5d74b4e677ef4563f59.zip
Change The other... to Another...
-rw-r--r--railties/guides/source/migrations.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/migrations.textile b/railties/guides/source/migrations.textile
index cfd89721ad..2c98009841 100644
--- a/railties/guides/source/migrations.textile
+++ b/railties/guides/source/migrations.textile
@@ -417,7 +417,6 @@ end
will create a new products table with those two columns (plus the +id+ column)
whereas
-The other helper is called +references+ (also available as +belongs_to+). In its
<ruby>
change_table :products do |t|
t.timestamps
@@ -425,6 +424,7 @@ end
</ruby>
adds those columns to an existing table.
+Another helper is called +references+ (also available as +belongs_to+). In its
simplest form it just adds some readability
<ruby>