# 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 --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -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 --git a/scripts/plot/xlim.m b/scripts/plot/xlim.m --- a/scripts/plot/xlim.m +++ b/scripts/plot/xlim.m @@ -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 --git a/scripts/plot/ylim.m b/scripts/plot/ylim.m --- a/scripts/plot/ylim.m +++ b/scripts/plot/ylim.m @@ -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 --git a/scripts/plot/zlim.m b/scripts/plot/zlim.m --- a/scripts/plot/zlim.m +++ b/scripts/plot/zlim.m @@ -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 --git a/scripts/strings/strtrim.m b/scripts/strings/strtrim.m --- a/scripts/strings/strtrim.m +++ b/scripts/strings/strtrim.m @@ -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