aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/debugging_rails_applications.md
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2015-08-25 16:13:03 +0200
committerRobin Dupret <robin.dupret@gmail.com>2015-08-25 16:13:34 +0200
commitf59de082bf2876b11e4f31c4d04f60cb4a331d8d (patch)
tree773eea1a63b5d7947e3680a548c5acfd65a4719a /guides/source/debugging_rails_applications.md
parentf150decfe2d7374fe5b511cbd0e85ea5bebfb3d7 (diff)
downloadrails-f59de082bf2876b11e4f31c4d04f60cb4a331d8d.tar.gz
rails-f59de082bf2876b11e4f31c4d04f60cb4a331d8d.tar.bz2
rails-f59de082bf2876b11e4f31c4d04f60cb4a331d8d.zip
Fix a tiny typo [ci skip]
Diffstat (limited to 'guides/source/debugging_rails_applications.md')
-rw-r--r--guides/source/debugging_rails_applications.md3
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