Skip to content

Commit

Permalink
Typo fix [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
ilja committed Dec 28, 2013
1 parent 04108f2 commit 1196bec
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions guides/source/engines.md
Original file line number Diff line number Diff line change
Expand Up @@ -959,8 +959,8 @@ self.author = Blorgh.author_class.find_or_create_by(name: author_name)
Resulting in something a little shorter, and more implicit in its behavior. The
`author_class` method should always return a `Class` object.

Since we changed the `author_class` method to return a `String` instead of a
`Class`, we must also modify our `belongs_to` definition in the `Blorgh::Post`
Since we changed the `author_class` method to return a `Class` instead of a
`String`, we must also modify our `belongs_to` definition in the `Blorgh::Post`
model:

```ruby
Expand Down Expand Up @@ -1014,7 +1014,8 @@ application. The same thing goes if you want to use a standard initializer.
For locales, simply place the locale files in the `config/locales` directory,
just like you would in an application.

Testing an engine -----------------
Testing an engine
-----------------

When an engine is generated, there is a smaller dummy application created inside
it at `test/dummy`. This application is used as a mounting point for the engine,
Expand Down

0 comments on commit 1196bec

Please sign in to comment.