aboutsummaryrefslogtreecommitdiffstats
path: root/railties/doc/guides/migrations/using_models_in_migrations.txt
diff options
context:
space:
mode:
Diffstat (limited to 'railties/doc/guides/migrations/using_models_in_migrations.txt')
-rw-r--r--railties/doc/guides/migrations/using_models_in_migrations.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/doc/guides/migrations/using_models_in_migrations.txt b/railties/doc/guides/migrations/using_models_in_migrations.txt
index eda216c50a..2a052e9207 100644
--- a/railties/doc/guides/migrations/using_models_in_migrations.txt
+++ b/railties/doc/guides/migrations/using_models_in_migrations.txt
@@ -19,7 +19,7 @@ class AddPartNumberToProducts < ActiveRecord::Migration
end
end
-------------------------
-The migration has its own minimal copy of the `Product` model and no longer cares about the `Product` model defined in the application.
+The migration has its own minimal copy of the Product model and no longer cares about the Product model defined in the application.
=== Dealing with changing models ===