# HG changeset patch # User Rik # Date 1457714240 28800 # Node ID b0920076dd98244c9c30b4e16da4d1f37e48206e # Parent 10c32f940636e893920be82b285a5fb3b7cf2fba doc: Add missing ')' in some docstrings. * cplxpair.m, edit.m, unidpdf.m, test.m: Add missing ')' in some docstrings. diff -r 10c32f940636 -r b0920076dd98 scripts/general/cplxpair.m --- a/scripts/general/cplxpair.m Thu Mar 10 20:26:45 2016 -0800 +++ b/scripts/general/cplxpair.m Fri Mar 11 08:37:20 2016 -0800 @@ -30,7 +30,7 @@ ## ## @var{tol} is a weighting factor which determines the tolerance of matching. ## The default value is 100 and the resulting tolerance for a given complex -## pair is @code{100 * eps (abs (@var{z}(i))}. +## pair is @code{100 * eps (abs (@var{z}(i)))}. ## ## By default the complex pairs are sorted along the first non-singleton ## dimension of @var{z}. If @var{dim} is specified, then the complex pairs are @@ -43,7 +43,7 @@ ## @c Set example in small font to prevent overfull line ## ## @smallexample -## cplxpair (exp(2i*pi*[0:4]'/5)) == exp(2i*pi*[3; 2; 4; 1; 0]/5) +## cplxpair (exp (2i*pi*[0:4]'/5)) == exp (2i*pi*[3; 2; 4; 1; 0]/5) ## @end smallexample ## @end deftypefn diff -r 10c32f940636 -r b0920076dd98 scripts/miscellaneous/edit.m --- a/scripts/miscellaneous/edit.m Thu Mar 10 20:26:45 2016 -0800 +++ b/scripts/miscellaneous/edit.m Fri Mar 11 08:37:20 2016 -0800 @@ -66,8 +66,8 @@ ## If an output argument is requested and the first input argument is @code{get} ## then @code{edit} will return the value of the control field @var{field}. ## If the control field does not exist, edit will return a structure -## containing all fields and values. Thus, @code{edit ("get", "all"} returns a -## complete control structure. +## containing all fields and values. Thus, @code{edit ("get", "all")} returns +## a complete control structure. ## ## The following control fields are used: ## diff -r 10c32f940636 -r b0920076dd98 scripts/statistics/distributions/unidpdf.m --- a/scripts/statistics/distributions/unidpdf.m Thu Mar 10 20:26:45 2016 -0800 +++ b/scripts/statistics/distributions/unidpdf.m Fri Mar 11 08:37:20 2016 -0800 @@ -24,7 +24,7 @@ ## the integer values 1--@var{n} with equal probability. ## ## Warning: The underlying implementation uses the double class and will only -## be accurate for @var{n} < @code{flintmax} (@w{@math{2^{53}}}) on +## be accurate for @var{n} < @code{flintmax} (@w{@math{2^{53}}} on ## IEEE 754 compatible systems). ## @end deftypefn diff -r 10c32f940636 -r b0920076dd98 scripts/testfun/test.m --- a/scripts/testfun/test.m Thu Mar 10 20:26:45 2016 -0800 +++ b/scripts/testfun/test.m Fri Mar 11 08:37:20 2016 -0800 @@ -81,7 +81,7 @@ ## returns true if all of the tests were successful. If called with more ## than one output argument then the number of successful tests (@var{n}), ## the total number of tests in the file (@var{nmax}), the number of xtest -## failures (@var{nxfail}), and the number of skipped tests (@var{nskip} are +## failures (@var{nxfail}), and the number of skipped tests (@var{nskip}) are ## returned. ## ## Example