aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/migrations.md
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2012-11-29 14:25:02 -0800
committerSteve Klabnik <steve@steveklabnik.com>2012-11-29 14:25:02 -0800
commitd16a1b9e8b2e94649c42e4320881e84add9ec89d (patch)
tree9d13545a1f1346c1ca8ca93082cd9137053a8546 /guides/source/migrations.md
parentd168d234e3ce439911a178d1d13f6c2cbf8ff549 (diff)
downloadrails-d16a1b9e8b2e94649c42e4320881e84add9ec89d.tar.gz
rails-d16a1b9e8b2e94649c42e4320881e84add9ec89d.tar.bz2
rails-d16a1b9e8b2e94649c42e4320881e84add9ec89d.zip
Normalize on 'After reading this guide, you will know:'
We have three or four different introduction sentences to the guides. After this commit, we use the same one everywhere.
Diffstat (limited to 'guides/source/migrations.md')
-rw-r--r--guides/source/migrations.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/migrations.md b/guides/source/migrations.md
index e6d2f6e0a9..7b1ca9ea90 100644
--- a/guides/source/migrations.md
+++ b/guides/source/migrations.md
@@ -6,7 +6,7 @@ database schema over time. Rather than write schema modifications in pure SQL,
migrations allow you to use an easy Ruby DSL to describe changes to your
tables.
-In this guide, you'll learn all about migrations including:
+After reading this guide, you will know:
* The generators you can use to create them.
* The methods Active Record provides to manipulate your database.