Hey
I am using the gettting started with rails tutorial on Rails guide Getting Started with Rails — Ruby on Rails Guides
I am up to session 5.7 Showing articles. I am stuck on this session as i have changed my parameters to be strong and all went well. I have defined my show method in my controller however, when i link this to the HTML file i put this code as seen below however when i run it it shows an error saying line 3 .title is undefined. Any advice would be great.
Thanks
<p>
``<strong>Title:</strong>
``<%= @article.title %>
</p>
<p>
``<strong>Text:</strong>
``<%= @article.text %>
`
`