aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/debugging_rails_applications.md
diff options
context:
space:
mode:
authorGenadi Samokovarov <gsamokovarov@gmail.com>2015-03-02 14:00:54 +0200
committerGenadi Samokovarov <gsamokovarov@gmail.com>2015-03-02 14:05:08 +0200
commit62dfb16842b86a27fb98285958eea075561d4a66 (patch)
treedb6aceca98f139d90c02216fdfabdfbdcd3ad7e8 /guides/source/debugging_rails_applications.md
parent293bd95c3e77275193130bc14c986348aae8b0e2 (diff)
downloadrails-62dfb16842b86a27fb98285958eea075561d4a66.tar.gz
rails-62dfb16842b86a27fb98285958eea075561d4a66.tar.bz2
rails-62dfb16842b86a27fb98285958eea075561d4a66.zip
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`.
Diffstat (limited to 'guides/source/debugging_rails_applications.md')
-rw-r--r--guides/source/debugging_rails_applications.md6
1 files 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.