# HG changeset patch # User jwe # Date 1179803856 0 # Node ID 4971ff18d2d7277b019e32346423456e565f2154 # Parent 415b8b0106d0c0fb7b42a33c551e9e2201185b74 [project @ 2007-05-22 03:17:36 by jwe] diff --git a/doc/interpreter/debug.txi b/doc/interpreter/debug.txi --- a/doc/interpreter/debug.txi +++ b/doc/interpreter/debug.txi @@ -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.