diff options
author | Jonathan Roes <jroes@jroes.net> | 2013-03-27 23:30:51 -0300 |
---|---|---|
committer | Jonathan Roes <jroes@jroes.net> | 2013-03-27 23:30:51 -0300 |
commit | 057ae0b7fc41e617520d665f2d524daff514cb2b (patch) | |
tree | 8f5810ed99af4c63ba36f25d9b8069049614e186 /guides/source | |
parent | d083193c994b4cf3d52b45fd1c054368bf3a8211 (diff) | |
download | rails-057ae0b7fc41e617520d665f2d524daff514cb2b.tar.gz rails-057ae0b7fc41e617520d665f2d524daff514cb2b.tar.bz2 rails-057ae0b7fc41e617520d665f2d524daff514cb2b.zip |
Remove unnecessary hyphen.
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/debugging_rails_applications.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md index 5531dee343..4754913f47 100644 --- a/guides/source/debugging_rails_applications.md +++ b/guides/source/debugging_rails_applications.md @@ -23,7 +23,7 @@ One common task is to inspect the contents of a variable. In Rails, you can do t ### `debug` -The `debug` helper will return a \<pre>-tag that renders the object using the YAML format. This will generate human-readable data from any object. For example, if you have this code in a view: +The `debug` helper will return a \<pre> tag that renders the object using the YAML format. This will generate human-readable data from any object. For example, if you have this code in a view: ```html+erb <%= debug @post %> |