changeset 17446:9e4e24a0a118

doc: Use common language for xlim, ylim, zlim docstrings. * scripts/plot/xlim.m, scripts/plot/ylim.m, scripts/plot/zlim.m: Use common language for xlim, ylim, zlim docstrings.
author Rik <rik@octave.org>
date Thu, 19 Sep 2013 14:03:11 -0700
parents 2fee3022ac2f
children 359366a4994f
files scripts/plot/xlim.m scripts/plot/ylim.m scripts/plot/zlim.m
diffstat 3 files changed, 15 insertions(+), 18 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/xlim.m	Thu Sep 19 13:48:54 2013 -0700
+++ b/scripts/plot/xlim.m	Thu Sep 19 14:03:11 2013 -0700
@@ -23,18 +23,17 @@
 ## @deftypefnx {Function File} {} xlim ("auto")
 ## @deftypefnx {Function File} {} xlim ("manual")
 ## @deftypefnx {Function File} {} xlim (@var{hax}, @dots{})
-## Query or set the limits of the x-axis of the current plot.
+## Query or set the limits of the x-axis for the current plot.
 ##
 ## Called without arguments @code{xlim} returns the x-axis limits of the
 ## current plot.  With the input query @qcode{"mode"}, return the current
-## x-limit calculation mode which is either @qcode{"auto"} or
-## @qcode{"manual"}.
+## x-limit calculation mode which is either @qcode{"auto"} or @qcode{"manual"}.
 ##
 ## If passed a 2-element vector [@var{x_lo} @var{x_hi}], the limits of the
-## x-axis are set to these values.
+## x-axis are set to these values and the mode is set to @qcode{"manual"}.
 ##
-## The current plotting mode can be set by passing either @qcode{"auto"} or
-## @qcode{"manual"} as the argument.
+## The current plotting mode can be changed by using either @qcode{"auto"}
+## or @qcode{"manual"} as the argument.
 ##
 ## If the first argument @var{hax} is an axes handle, then operate on
 ## this axis rather than the current axes returned by @code{gca}.
--- a/scripts/plot/ylim.m	Thu Sep 19 13:48:54 2013 -0700
+++ b/scripts/plot/ylim.m	Thu Sep 19 14:03:11 2013 -0700
@@ -23,18 +23,17 @@
 ## @deftypefnx {Function File} {} ylim ("auto")
 ## @deftypefnx {Function File} {} ylim ("manual")
 ## @deftypefnx {Function File} {} ylim (@var{hax}, @dots{})
-## Query or set the limits of the y-axis of the current plot.
+## Query or set the limits of the y-axis for the current plot.
 ##
 ## Called without arguments @code{ylim} returns the y-axis limits of the
 ## current plot.  With the input query @qcode{"mode"}, return the current
-## y-limit calculation mode which is either @qcode{"auto"} or
-## @qcode{"manual"}.
+## y-limit calculation mode which is either @qcode{"auto"} or @qcode{"manual"}.
 ##
 ## If passed a 2-element vector [@var{y_lo} @var{y_hi}], the limits of the
-## y-axis are set to these values.
+## y-axis are set to these values and the mode is set to @qcode{"manual"}.
 ##
-## The current plotting mode can be set by passing either @qcode{"auto"} or
-## @qcode{"manual"} as the argument.
+## The current plotting mode can be changed by using either @qcode{"auto"}
+## or @qcode{"manual"} as the argument.
 ##
 ## If the first argument @var{hax} is an axes handle, then operate on
 ## this axis rather than the current axes returned by @code{gca}.
--- a/scripts/plot/zlim.m	Thu Sep 19 13:48:54 2013 -0700
+++ b/scripts/plot/zlim.m	Thu Sep 19 14:03:11 2013 -0700
@@ -23,18 +23,17 @@
 ## @deftypefnx {Function File} {} zlim ("auto")
 ## @deftypefnx {Function File} {} zlim ("manual")
 ## @deftypefnx {Function File} {} zlim (@var{hax}, @dots{})
-## Query or set the limits of the z-axis of the current plot.
+## Query or set the limits of the z-axis for the current plot.
 ##
 ## Called without arguments @code{zlim} returns the z-axis limits of the
 ## current plot.  With the input query @qcode{"mode"}, return the current
-## z-limit calculation mode which is either @qcode{"auto"} or
-## @qcode{"manual"}.
+## z-limit calculation mode which is either @qcode{"auto"} or @qcode{"manual"}.
 ##
 ## If passed a 2-element vector [@var{z_lo} @var{z_hi}], the limits of the
-## z-axis are set to these values.
+## x-axis are set to these values and the mode is set to @qcode{"manual"}.
 ##
-## The current plotting mode can be set by passing either @qcode{"auto"} or
-## @qcode{"manual"} as the argument.
+## The current plotting mode can be changed by using either @qcode{"auto"}
+## or @qcode{"manual"} as the argument.
 ##
 ## If the first argument @var{hax} is an axes handle, then operate on
 ## this axis rather than the current axes returned by @code{gca}.