diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2015-08-25 16:13:03 +0200 |
---|---|---|
committer | Robin Dupret <robin.dupret@gmail.com> | 2015-08-25 16:13:34 +0200 |
commit | f59de082bf2876b11e4f31c4d04f60cb4a331d8d (patch) | |
tree | 773eea1a63b5d7947e3680a548c5acfd65a4719a | |
parent | f150decfe2d7374fe5b511cbd0e85ea5bebfb3d7 (diff) | |
download | rails-f59de082bf2876b11e4f31c4d04f60cb4a331d8d.tar.gz rails-f59de082bf2876b11e4f31c4d04f60cb4a331d8d.tar.bz2 rails-f59de082bf2876b11e4f31c4d04f60cb4a331d8d.zip |
Fix a tiny typo [ci skip]
-rw-r--r-- | guides/source/debugging_rails_applications.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md index fe8757fbd5..a05abb61d6 100644 --- a/guides/source/debugging_rails_applications.md +++ b/guides/source/debugging_rails_applications.md @@ -623,7 +623,8 @@ Processing by ArticlesController#index as HTML If we use `next`, we won't go deep inside method calls. Instead, `byebug` will go to the next line within the same context. In this case, it is the last line of the current method, so `byebug` will return to the next line of the caller -+method. +method. + ``` (byebug) next |