diff options
author | Vipul A M <vipulnsward@gmail.com> | 2013-09-03 01:13:30 +0530 |
---|---|---|
committer | Vipul A M <vipulnsward@gmail.com> | 2013-09-03 01:13:30 +0530 |
commit | bc7a4f0f60a0022c5c065e3f0a74cfa26928aa80 (patch) | |
tree | 9d078fe6b4dd8579140a4cb29e2c045af764e36d /guides | |
parent | 9da59af114e091db09e0983cacc156ade02e3508 (diff) | |
download | rails-bc7a4f0f60a0022c5c065e3f0a74cfa26928aa80.tar.gz rails-bc7a4f0f60a0022c5c065e3f0a74cfa26928aa80.tar.bz2 rails-bc7a4f0f60a0022c5c065e3f0a74cfa26928aa80.zip |
`attibutes` => `attributes`
Diffstat (limited to 'guides')
-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 14d65e4747..b811e20f9b 100644 --- a/guides/source/debugging_rails_applications.md +++ b/guides/source/debugging_rails_applications.md @@ -233,7 +233,7 @@ only evaluated if the output level is the same or included in the allowed level (i.e. lazy loading). The same code rewritten would be: ```ruby -logger.debug {"Person attibutes hash: #{@person.attributes.inspect}"} +logger.debug {"Person attributes hash: #{@person.attributes.inspect}"} ``` The contents of the block, and therefore the string interpolation, is only |