changeset 6648:4971ff18d2d7

[project @ 2007-05-22 03:17:36 by jwe]
author jwe
date Tue, 22 May 2007 03:17:36 +0000
parents 415b8b0106d0
children 38334ac563f0
files doc/interpreter/debug.txi
diffstat 1 files changed, 6 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/doc/interpreter/debug.txi	Tue May 22 02:58:56 2007 +0000
+++ b/doc/interpreter/debug.txi	Tue May 22 03:17:36 2007 +0000
@@ -117,12 +117,9 @@
 
 @DOCSTRING(dbtype)
 
-Within debug mode it is equally allows single line stepping through a
-function.  To allow this two additional commands are available;
-@code{dbstep} and @code{dbnext}.  These differ slightly in the way
-they treat the next executable line if the next line itself is a
-function defined in an m-file.
-
-@code{dbnext} will execute the next line, while staying in the existing
-function being debugged. Whereas @code{dbstep} will step in to this new
-function defined in an m-file.
+Debug mode equally allows single line stepping through a function using
+the commands @code{dbstep} and @code{dbnext}.  These differ slightly in
+the way they treat the next executable line if the next line itself is a
+function defined in an m-file.  The @code{dbnext} command will execute
+the next line, while staying in the existing function being debugged.
+The @code{dbstep} command will step in to the new function.