diff options
author | Christopher J. Kenna <cjk@gemini.(none)> | 2009-07-16 13:18:02 -0400 |
---|---|---|
committer | Christopher J. Kenna <cjk@gemini.(none)> | 2009-07-16 13:18:02 -0400 |
commit | 3e599e6d8e108c7b03b7c4a8055a24f7fa81fa9b (patch) | |
tree | 7ba4d72b64a94ba92daea4909873afd4c739a9e3 /railties/guides/source/layouts_and_rendering.textile | |
parent | b794765296c3e5bbe502697158ac820b0ee5c40e (diff) | |
download | rails-3e599e6d8e108c7b03b7c4a8055a24f7fa81fa9b.tar.gz rails-3e599e6d8e108c7b03b7c4a8055a24f7fa81fa9b.tar.bz2 rails-3e599e6d8e108c7b03b7c4a8055a24f7fa81fa9b.zip |
fixed typo. meaning was opposite of intent.
Diffstat (limited to 'railties/guides/source/layouts_and_rendering.textile')
-rw-r--r-- | railties/guides/source/layouts_and_rendering.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/layouts_and_rendering.textile b/railties/guides/source/layouts_and_rendering.textile index e1b259bea7..0cee413ac3 100644 --- a/railties/guides/source/layouts_and_rendering.textile +++ b/railties/guides/source/layouts_and_rendering.textile @@ -418,7 +418,7 @@ def show end </ruby> -Note that the implicit render done by ActionController detects if +render+ has been called, and thus avoids this error. So this code will work with problems: +Note that the implicit render done by ActionController detects if +render+ has been called, and thus avoids this error. Therefore, the following will work without errors: <ruby> def show |