From f59de082bf2876b11e4f31c4d04f60cb4a331d8d Mon Sep 17 00:00:00 2001 From: Robin Dupret Date: Tue, 25 Aug 2015 16:13:03 +0200 Subject: [PATCH] Fix a tiny typo [ci skip] --- guides/source/debugging_rails_applications.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- GitLab