changeset 8491:aaff46fef256

[docs] fix hypenation: x - axis => x-axis, etc
author Brian Gough <bjg@gnu.org>
date Tue, 13 Jan 2009 00:26:56 -0500
parents b88596e8f341
children 9e18aff77e9e
files scripts/general/cart2pol.m scripts/general/cart2sph.m scripts/general/pol2cart.m
diffstat 3 files changed, 6 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/general/cart2pol.m	Tue Jan 13 00:26:53 2009 -0500
+++ b/scripts/general/cart2pol.m	Tue Jan 13 00:26:56 2009 -0500
@@ -21,8 +21,8 @@
 ## @deftypefnx {Function File} {[@var{theta}, @var{r}, @var{z}] =} cart2pol (@var{x}, @var{y}, @var{z})
 ## Transform cartesian to polar or cylindrical coordinates.
 ## @var{x}, @var{y} (and @var{z}) must be of same shape.
-## @var{theta} describes the angle relative to the x - axis.
-## @var{r} is the distance to the z - axis (0, 0, z).
+## @var{theta} describes the angle relative to the x-axis.
+## @var{r} is the distance to the z-axis (0, 0, z).
 ## @seealso{pol2cart, cart2sph, sph2cart}
 ## @end deftypefn
 
--- a/scripts/general/cart2sph.m	Tue Jan 13 00:26:53 2009 -0500
+++ b/scripts/general/cart2sph.m	Tue Jan 13 00:26:56 2009 -0500
@@ -20,8 +20,8 @@
 ## @deftypefn {Function File} {[@var{theta}, @var{phi}, @var{r}] =} cart2sph (@var{x}, @var{y}, @var{z})
 ## Transform cartesian to spherical coordinates.
 ## @var{x}, @var{y} and @var{z} must be of same shape.
-## @var{theta} describes the angle relative to the x - axis.
-## @var{phi} is the angle relative to the xy - plane.
+## @var{theta} describes the angle relative to the x-axis.
+## @var{phi} is the angle relative to the xy-plane.
 ## @var{r} is the distance to the origin (0, 0, 0).
 ## @seealso{pol2cart, cart2pol, sph2cart}
 ## @end deftypefn
--- a/scripts/general/pol2cart.m	Tue Jan 13 00:26:53 2009 -0500
+++ b/scripts/general/pol2cart.m	Tue Jan 13 00:26:56 2009 -0500
@@ -21,8 +21,8 @@
 ## @deftypefnx {Function File} {[@var{x}, @var{y}, @var{z}] =} pol2cart (@var{theta}, @var{r}, @var{z})
 ## Transform polar or cylindrical to cartesian coordinates.
 ## @var{theta}, @var{r} (and @var{z}) must be of same shape.
-## @var{theta} describes the angle relative to the x - axis.
-## @var{r} is the distance to the z - axis (0, 0, z).
+## @var{theta} describes the angle relative to the x-axis.
+## @var{r} is the distance to the z-axis (0, 0, z).
 ## @seealso{cart2pol, cart2sph, sph2cart}
 ## @end deftypefn