Merge pull request #434 from mikegee/README-fixes

fix delagate w/ prefix
This commit is contained in:
Steve Klabnik 2013-01-21 16:01:27 -08:00
commit cc04adc717
1 changed files with 2 additions and 1 deletions

View File

@ -328,7 +328,8 @@ From your view template, assuming `@article` is decorated, you could do any of t
```ruby
@article.title # Returns the article's `.title`
@article.name # Returns the article's `author.name`
@article.body # Returns the article's `.body`
@article.author_name # Returns the article's `author.name`
@article.author_title # Returns the article's `author.title`
```