diff options
author | David RodrÃguez de Dios <deivid.rodriguez@gmail.com> | 2014-04-11 11:00:19 +0200 |
---|---|---|
committer | David RodrÃguez de Dios <deivid.rodriguez@gmail.com> | 2014-04-11 11:00:19 +0200 |
commit | 8834847a37398ec6413f5bd6099ef265e5240598 (patch) | |
tree | ab164ea4105916abe26114910935278fa55cd499 /guides | |
parent | 7fe49a4545d5b580ccd324ec86889eeb166c50f6 (diff) | |
download | rails-8834847a37398ec6413f5bd6099ef265e5240598.tar.gz rails-8834847a37398ec6413f5bd6099ef265e5240598.tar.bz2 rails-8834847a37398ec6413f5bd6099ef265e5240598.zip |
Minor fixes in the rails debugging guide
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/debugging_rails_applications.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md index 2357399900..a4273d772b 100644 --- a/guides/source/debugging_rails_applications.md +++ b/guides/source/debugging_rails_applications.md @@ -308,7 +308,7 @@ For example: ```bash @posts = Post.all -(rdb:7) +(byebug:7) ``` Now it's time to explore and dig into your application. A good place to start is @@ -589,7 +589,7 @@ been executed yet. Use the `next` command to move on in the code: (byebug) next /PathTo/project/app/models/author.rb:12 @recent_comments -(rdb:1) var instance +(byebug:1) var instance @attributes = {"updated_at"=>"2008-07-31 12:46:10", "id"=>"1", "first_name"=>"Bob", "las... @attributes_cache = {} @comments = [] |