From 62dfb16842b86a27fb98285958eea075561d4a66 Mon Sep 17 00:00:00 2001 From: Genadi Samokovarov Date: Mon, 2 Mar 2015 14:00:54 +0200 Subject: [PATCH] Nit pick the byebug settings guide for default values [ci skip] In #19097 we had a discussion where we decided to change `byebug` settings sections default part to actually say `defaults`. --- guides/source/debugging_rails_applications.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guides/source/debugging_rails_applications.md b/guides/source/debugging_rails_applications.md index 926a048762..4fcc9319c4 100644 --- a/guides/source/debugging_rails_applications.md +++ b/guides/source/debugging_rails_applications.md @@ -831,10 +831,10 @@ will be stopped and you will have to start it again. `byebug` has a few available options to tweak its behaviour: -* `set autoreload`: Reload source code when changed (default: true). -* `set autolist`: Execute `list` command on every breakpoint (default: true). +* `set autoreload`: Reload source code when changed (defaults: true). +* `set autolist`: Execute `list` command on every breakpoint (defaults: true). * `set listsize _n_`: Set number of source lines to list by default to _n_ -(default: 10) +(defaults: 10) * `set forcestep`: Make sure the `next` and `step` commands always move to a new line.