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`.
This commit is contained in:
Genadi Samokovarov 2015-03-02 14:00:54 +02:00
parent 293bd95c3e
commit 62dfb16842
1 changed files with 3 additions and 3 deletions

View File

@ -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.