aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/plugins.textile
diff options
context:
space:
mode:
authorJaime Iniesta <jaimeiniesta@gmail.com>2010-07-09 17:53:47 +0200
committerJaime Iniesta <jaimeiniesta@gmail.com>2010-07-09 17:53:47 +0200
commitc6f4c5916ef467814d970c70627a82c1df4d2686 (patch)
tree0e697aea7aef0ca88902d884227c665f6300dfaa /railties/guides/source/plugins.textile
parentd7ffa3c077e08921ea7897455084fc2942fe0977 (diff)
downloadrails-c6f4c5916ef467814d970c70627a82c1df4d2686.tar.gz
rails-c6f4c5916ef467814d970c70627a82c1df4d2686.tar.bz2
rails-c6f4c5916ef467814d970c70627a82c1df4d2686.zip
Minor typos: 'built-in' instead of 'built in', 'built into' instead of 'built in to'
Diffstat (limited to 'railties/guides/source/plugins.textile')
-rw-r--r--railties/guides/source/plugins.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/plugins.textile b/railties/guides/source/plugins.textile
index a12434a95b..e853ba79e9 100644
--- a/railties/guides/source/plugins.textile
+++ b/railties/guides/source/plugins.textile
@@ -1284,7 +1284,7 @@ class YaffleMigrationGenerator < Rails::Generator::NamedBase
end
</ruby>
-The generator creates a new file in 'db/migrate' with a timestamp and an 'add_column' statement. It reuses the built in rails +migration_template+ method, and reuses the built-in rails migration template.
+The generator creates a new file in 'db/migrate' with a timestamp and an 'add_column' statement. It reuses the built-in rails +migration_template+ method, and reuses the built-in rails migration template.
It's courteous to check to see if table names are being pluralized whenever you create a generator that needs to be aware of table names. This way people using your generator won't have to manually change the generated files if they've turned pluralization off.