diff options
author | Jason Noble <github+jasonn@jasonnoble.org> | 2011-11-13 01:40:28 -0700 |
---|---|---|
committer | Jason Noble <github+jasonn@jasonnoble.org> | 2011-11-13 01:40:28 -0700 |
commit | 5e83491e976c867c57892d1542dbbcf571bada41 (patch) | |
tree | 91a911741b79d09df548611fd91e1e3bc6d97054 /railties/guides/source | |
parent | 3e3872b5985f0b360571b97cdc1b3203989d40fd (diff) | |
download | rails-5e83491e976c867c57892d1542dbbcf571bada41.tar.gz rails-5e83491e976c867c57892d1542dbbcf571bada41.tar.bz2 rails-5e83491e976c867c57892d1542dbbcf571bada41.zip |
Be explicit on where the show.html.erb is located
Diffstat (limited to 'railties/guides/source')
-rw-r--r-- | railties/guides/source/getting_started.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index bd929a6ae2..8f48c52442 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -1011,7 +1011,7 @@ end The +show+ action uses +Post.find+ to search for a single record in the database by its id value. After finding the record, Rails displays it by using -+show.html.erb+: ++app/views/posts/show.html.erb+: <erb> <p class="notice"><%= notice %></p> |