diff options
author | Zachary Scott <e@zzak.io> | 2015-05-02 00:50:14 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2015-05-02 00:50:14 -0700 |
commit | 1e7640e68db5af7d6ed7161bc08435ec7f80a8f3 (patch) | |
tree | a3e01392b9bc2dbbad473c33335c699a7ea9e351 | |
parent | 1a02de70982e9d6615097383314f00e6d7419efb (diff) | |
download | rails-1e7640e68db5af7d6ed7161bc08435ec7f80a8f3.tar.gz rails-1e7640e68db5af7d6ed7161bc08435ec7f80a8f3.tar.bz2 rails-1e7640e68db5af7d6ed7161bc08435ec7f80a8f3.zip |
Fix method call typo [ci skip]
-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 0cbbb1d216..ec3ac62b8c 100644 --- a/guides/source/debugging_rails_applications.md +++ b/guides/source/debugging_rails_applications.md @@ -54,7 +54,7 @@ Title: Rails debugging guide ### `to_yaml` -Alternatively, calling `to_yaml` on any object converts it to YAML. You can pass this converted object into the `simple format` helper method to format the output. This is how `debug` does its magic. +Alternatively, calling `to_yaml` on any object converts it to YAML. You can pass this converted object into the `simple_format` helper method to format the output. This is how `debug` does its magic. ```html+erb <%= simple_format @article.to_yaml %> |