diff --git a/guides/source/engines.md b/guides/source/engines.md index 6bbd68ff78..71844b7990 100644 --- a/guides/source/engines.md +++ b/guides/source/engines.md @@ -843,28 +843,10 @@ above the "Title" output inside `app/views/blorgh/articles/show.html.erb`: ```html+erb
Author: - <%= @article.author %> + <%= @article.author.name %>
``` -By outputting `@article.author` using the `<%=` tag, the `to_s` method will be -called on the object. By default, this will look quite ugly: - -``` -#