summaryrefslogtreecommitdiff
path: root/doc/UsersGuide
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-02-21 09:56:56 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-02-21 09:56:56 +0000
commit97ded5d1bf400838d7c07743ff8ff8552042a2e7 (patch)
treea5b9a98f469a304d3e01fdd0f8270c22db06c31f /doc/UsersGuide
parent5cd66dad570d4f429f77ceb50d9188e1cba2db83 (diff)
Fixed typo in the description for CCTK_CoordRange().
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2033 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'doc/UsersGuide')
-rw-r--r--doc/UsersGuide/FunctionReference.tex10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/UsersGuide/FunctionReference.tex b/doc/UsersGuide/FunctionReference.tex
index 621421b5..c8a6b0ac 100644
--- a/doc/UsersGuide/FunctionReference.tex
+++ b/doc/UsersGuide/FunctionReference.tex
@@ -962,15 +962,15 @@ will be used if the coordinate direction is given as less than or equal to zero,
The coordinate name is independent of the grid function name.
The coordinate range is registered by {\t CCTK\_CoordRegisterRange}.
To find the range, the coordinate system name must be given, and either
-the coordinate direction or the coordinate name. The coordinate name
-will be used if the coordinate direction is given as -1, otherwise the
-coordinate name will be used.
+the coordinate direction or the coordinate name. The coordinate direction
+will be used if is given as a positive value, otherwise the coordinate
+name will be used.
\end{discussion}
\begin{examples}
\begin{tabular}{@{}p{3cm}cp{11cm}}
-\hfill {\bf C} && {\t ierr = CCTK\_CoordRange(cctkGH,*xmin,*xmax,-1,"xdir","mysystem") };
+\hfill {\bf C} && {\t ierr = CCTK\_CoordRange(cctkGH, \&xmin, \&xmax, -1, "xdir", "mysystem");}
\\
-\hfill {\bf Fortran} && {\t call CCTK\_COORDRANGE(ierr,cctkGH,Rmin,Rmax,-1,"radius","sphersystem")}
+\hfill {\bf Fortran} && {\t call CCTK\_COORDRANGE(ierr, cctkGH, Rmin, Rmax, -1, "radius", "sphersystem")}
\\
\end{tabular}
\end{examples}