changeset 21549:17845d0e359f

doc: Remove unecessary whitespace and end of docstrings. * octave_config_info.m, dlmwrite.m, edit.m, padecoef.m, unique.m: Remove unecessary whitespace and end of docstrings.
author Rik <rik@octave.org>
date Mon, 28 Mar 2016 08:58:10 -0700
parents f044dc45b8b1
children 7ebd8ac26178
files scripts/deprecated/octave_config_info.m scripts/io/dlmwrite.m scripts/miscellaneous/edit.m scripts/polynomial/padecoef.m scripts/set/unique.m
diffstat 5 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/deprecated/octave_config_info.m	Sun Mar 27 21:34:08 2016 -0700
+++ b/scripts/deprecated/octave_config_info.m	Mon Mar 28 08:58:10 2016 -0700
@@ -25,7 +25,7 @@
 ## @code{__octave_config_info__} as a replacement.
 ##
 ## Return a structure containing configuration and installation
-## information for Octave. 
+## information for Octave.
 ##
 ## If @var{option} is a string, return the configuration information for
 ## the specified option.
--- a/scripts/io/dlmwrite.m	Sun Mar 27 21:34:08 2016 -0700
+++ b/scripts/io/dlmwrite.m	Mon Mar 28 08:58:10 2016 -0700
@@ -22,7 +22,7 @@
 ## @deftypefnx {} {} dlmwrite (@var{file}, @var{M}, @var{key}, @var{val} @dots{})
 ## @deftypefnx {} {} dlmwrite (@var{file}, @var{M}, "-append", @dots{})
 ## @deftypefnx {} {} dlmwrite (@var{fid}, @dots{})
-## Write the numeric matrix @var{M} to the text file @var{file} using a 
+## Write the numeric matrix @var{M} to the text file @var{file} using a
 ## delimiter.
 ##
 ## @var{file} should be a filename or a writable file ID given by @code{fopen}.
--- a/scripts/miscellaneous/edit.m	Sun Mar 27 21:34:08 2016 -0700
+++ b/scripts/miscellaneous/edit.m	Mon Mar 28 08:58:10 2016 -0700
@@ -67,7 +67,7 @@
 ## @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.
+## @qcode{"all"})} returns a complete control structure.
 ##
 ## The following control fields are used:
 ##
--- a/scripts/polynomial/padecoef.m	Sun Mar 27 21:34:08 2016 -0700
+++ b/scripts/polynomial/padecoef.m	Mon Mar 28 08:58:10 2016 -0700
@@ -59,10 +59,10 @@
 ##
 ## The inputs @var{T} and @var{N} must be non-negative numeric scalars.  If
 ## @var{N} is unspecified it defaults to 1.
-## 
+##
 ## The output row vectors @var{num} and @var{den} contain the numerator and
 ## denominator coefficients in descending powers of s.  Both are
-## @var{N}th-order polynomials.  
+## @var{N}th-order polynomials.
 ##
 ## For example:
 ##
--- a/scripts/set/unique.m	Sun Mar 27 21:34:08 2016 -0700
+++ b/scripts/set/unique.m	Mon Mar 28 08:58:10 2016 -0700
@@ -39,7 +39,7 @@
 ## Additionally, if @var{i} is a requested output then one of
 ## @qcode{"first"} or @qcode{"last"} may be given as an input.  If
 ## @qcode{"last"} is specified, return the highest possible indices in
-## @var{i}, otherwise, if @qcode{"first"} is specified, return the lowest. 
+## @var{i}, otherwise, if @qcode{"first"} is specified, return the lowest.
 ## The default is @qcode{"last"}.
 ## @seealso{union, intersect, setdiff, setxor, ismember}
 ## @end deftypefn