From 3dc1a36b7025466984e90d67f35cacddb321425e Mon Sep 17 00:00:00 2001 From: Ryunosuke SATO Date: Sat, 5 Jan 2013 00:16:12 +0900 Subject: ERB::Util::h is no longer generated in scaffold --- guides/source/debugging_rails_applications.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'guides/source/debugging_rails_applications.md') diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md index 2e90e8728c..524fe46408 100644 --- a/guides/source/debugging_rails_applications.md +++ b/guides/source/debugging_rails_applications.md @@ -29,7 +29,7 @@ The `debug` helper will return a \
-tag that renders the object using the YA
 <%= debug @post %>
 

Title: - <%=h @post.title %> + <%= @post.title %>

``` @@ -58,7 +58,7 @@ Displaying an instance variable, or any other object or method, in YAML format c <%= simple_format @post.to_yaml %>

Title: - <%=h @post.title %> + <%= @post.title %>

``` @@ -88,7 +88,7 @@ Another useful method for displaying object values is `inspect`, especially when <%= [1, 2, 3, 4, 5].inspect %>

Title: - <%=h @post.title %> + <%= @post.title %>

``` -- cgit v1.2.3