aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorAshley Engelund (weedySeaDragon @ github) <registrations@ashleycaroline.com>2017-11-26 00:21:29 -0800
committerAshley Engelund (weedySeaDragon @ github) <registrations@ashleycaroline.com>2017-11-26 00:47:43 -0800
commit2cec7ccc691f9abaa480e23f57c4003f766c876d (patch)
treebafee60134e154a6ca9e96ef6dc793d39a97a71b /guides
parented564f7db7fb9df58b095b66ab4668f626d6c4b5 (diff)
downloadrails-2cec7ccc691f9abaa480e23f57c4003f766c876d.tar.gz
rails-2cec7ccc691f9abaa480e23f57c4003f766c876d.tar.bz2
rails-2cec7ccc691f9abaa480e23f57c4003f766c876d.zip
verb tense correction [ci skip]
Diffstat (limited to 'guides')
-rw-r--r--guides/source/engines.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/engines.md b/guides/source/engines.md
index 8f4edce04a..fddfdd37e7 100644
--- a/guides/source/engines.md
+++ b/guides/source/engines.md
@@ -982,7 +982,7 @@ Blorgh.author_class = "User"
WARNING: It's very important here to use the `String` version of the class,
rather than the class itself. If you were to use the class, Rails would attempt
to load that class and then reference the related table. This could lead to
-problems if the table wasn't already existing. Therefore, a `String` should be
+problems if the table didn't already exist. Therefore, a `String` should be
used and then converted to a class using `constantize` in the engine later on.
Go ahead and try to create a new article. You will see that it works exactly in the