changeset 7666:693ac94c2854

Fixed minor bugs in help texts of [x|y|z]lim and strtrim
author sh@sh-laptop
date Fri, 28 Mar 2008 13:09:35 -0400
parents aead4b9d026b
children fb3a6c53c2b2
files scripts/ChangeLog scripts/plot/xlim.m scripts/plot/ylim.m scripts/plot/zlim.m scripts/strings/strtrim.m
diffstat 5 files changed, 10 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Fri Mar 28 12:52:31 2008 -0400
+++ b/scripts/ChangeLog	Fri Mar 28 13:09:35 2008 -0400
@@ -1,3 +1,8 @@
+2008-03-27  Soren Hauberg  <hauberg@gmail.com>
+
+	* plot/xlim.m, plot/ylim.m, plot/zlim.m, strings/strtrim.m:
+	Doc fixes.
+
 2008-03-27  David Bateman  <dbateman@free.fr>
 
 	* plot/__plt2__.m: Test if args are empty first so that
--- a/scripts/plot/xlim.m	Fri Mar 28 12:52:31 2008 -0400
+++ b/scripts/plot/xlim.m	Fri Mar 28 13:09:35 2008 -0400
@@ -23,7 +23,7 @@
 ## @deftypefnx {Function File} {} xlim (@var{m})
 ## @deftypefnx {Function File} {} xlim (@var{h}, @dots{})
 ## Get or set the limits of the x axis of the current plot. Called without
-## argumenst @code{xlim] returns the x axis limits of the current plot.
+## arguments @code{xlim} returns the x axis limits of the current plot.
 ## If passed a two element vector @var{xl}, the limits of the x axis are set
 ## to this value.
 ##
--- a/scripts/plot/ylim.m	Fri Mar 28 12:52:31 2008 -0400
+++ b/scripts/plot/ylim.m	Fri Mar 28 13:09:35 2008 -0400
@@ -23,7 +23,7 @@
 ## @deftypefnx {Function File} {} ylim (@var{m})
 ## @deftypefnx {Function File} {} ylim (@var{h}, @dots{})
 ## Get or set the limits of the y axis of the current plot. Called without
-## argumenst @code{ylim] returns the y axis limits of the current plot.
+## arguments @code{ylim} returns the y axis limits of the current plot.
 ## If passed a two element vector @var{xl}, the limits of the y axis are set
 ## to this value.
 ##
--- a/scripts/plot/zlim.m	Fri Mar 28 12:52:31 2008 -0400
+++ b/scripts/plot/zlim.m	Fri Mar 28 13:09:35 2008 -0400
@@ -23,7 +23,7 @@
 ## @deftypefnx {Function File} {} zlim (@var{m})
 ## @deftypefnx {Function File} {} zlim (@var{h}, @dots{})
 ## Get or set the limits of the z axis of the current plot. Called without
-## argumenst @code{zlim] returns the z axis limits of the current plot.
+## arguments @code{zlim} returns the z axis limits of the current plot.
 ## If passed a two element vector @var{xl}, the limits of the z axis are set
 ## to this value.
 ##
--- a/scripts/strings/strtrim.m	Fri Mar 28 12:52:31 2008 -0400
+++ b/scripts/strings/strtrim.m	Fri Mar 28 13:09:35 2008 -0400
@@ -17,9 +17,9 @@
 ## <http://www.gnu.org/licenses/>.
 
 ## -*- texinfo -*-
-## @deftypefn {Function File} {} deblank (@var{s})
+## @deftypefn {Function File} {} strtrim (@var{s})
 ## Remove leading and trailing blanks and nulls from @var{s}.  If
-## @var{s} is a matrix, @var{deblank} trims each row to the length of
+## @var{s} is a matrix, @var{strtrim} trims each row to the length of
 ## longest string.  If @var{s} is a cell array, operate recursively on
 ## each element of the cell array. 
 ## @end deftypefn