aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2012-05-16 18:02:22 +1000
committerRyan Bigg <radarlistener@gmail.com>2012-05-16 18:05:36 +1000
commit038af99a0797f336e3521ae336e86e60d430eb73 (patch)
tree8059d84cbf851b90a3306eb63b78f7c7883189c8
parentf76e0a5484c7d4ee202c479309f3da6992ddf4bd (diff)
downloadrails-038af99a0797f336e3521ae336e86e60d430eb73.tar.gz
rails-038af99a0797f336e3521ae336e86e60d430eb73.tar.bz2
rails-038af99a0797f336e3521ae336e86e60d430eb73.zip
[getting started] Prefix users templates with 'users' to show that's where they're coming from
-rw-r--r--guides/source/getting_started.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/getting_started.textile b/guides/source/getting_started.textile
index 8a0ade1488..9b6f7ed9dd 100644
--- a/guides/source/getting_started.textile
+++ b/guides/source/getting_started.textile
@@ -933,8 +933,8 @@ simple example:
<%= @user.about_me %>
</erb>
-The +show+ view will automatically include the content of the
-+_user_details+ view. Note that partials are prefixed by an underscore,
+The +users/show+ template will automatically include the content of the
++users/_user_details+ template. Note that partials are prefixed by an underscore,
as to not be confused with regular views. However, you don't include the
underscore when including them with the +helper+ method.