aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/debugging_rails_applications.md
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2015-03-02 13:06:55 +0100
committerRobin Dupret <robin.dupret@gmail.com>2015-03-02 13:06:55 +0100
commit565bf8926e48151cb3168073132bc6016f46b32e (patch)
tree8338db10b70f13cf5dca8ace2dd81d533614dd21 /guides/source/debugging_rails_applications.md
parent76e37e6fa8a98a5b4cf389cf18c889c41520da1f (diff)
parent62dfb16842b86a27fb98285958eea075561d4a66 (diff)
downloadrails-565bf8926e48151cb3168073132bc6016f46b32e.tar.gz
rails-565bf8926e48151cb3168073132bc6016f46b32e.tar.bz2
rails-565bf8926e48151cb3168073132bc6016f46b32e.zip
Merge pull request #19168 from gsamokovarov/byebug-defaults-guide
Nit pick the byebug settings guide for default values [ci skip]
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 a6349eb301..9cb2efb9a2 100644
--- a/guides/source/debugging_rails_applications.md
+++ b/guides/source/debugging_rails_applications.md
@@ -782,10 +782,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.