# HG changeset patch # User sh@sh-laptop # Date 1206724175 14400 # Node ID 693ac94c2854683e33426860cb5ff41e2f8cae5a # Parent aead4b9d026bff7cd8ae9bfd1f8ea84827bbabca Fixed minor bugs in help texts of [x|y|z]lim and strtrim diff -r aead4b9d026b -r 693ac94c2854 scripts/ChangeLog --- 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 + + * plot/xlim.m, plot/ylim.m, plot/zlim.m, strings/strtrim.m: + Doc fixes. + 2008-03-27 David Bateman * plot/__plt2__.m: Test if args are empty first so that diff -r aead4b9d026b -r 693ac94c2854 scripts/plot/xlim.m --- 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. ## diff -r aead4b9d026b -r 693ac94c2854 scripts/plot/ylim.m --- 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. ## diff -r aead4b9d026b -r 693ac94c2854 scripts/plot/zlim.m --- 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. ## diff -r aead4b9d026b -r 693ac94c2854 scripts/strings/strtrim.m --- 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 @@ ## . ## -*- 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