diff options
Diffstat (limited to 'guides')
-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 |