summaryrefslogtreecommitdiff
path: root/doc/ReferenceManual/CCTKReference.tex
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ReferenceManual/CCTKReference.tex')
-rw-r--r--doc/ReferenceManual/CCTKReference.tex6
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/ReferenceManual/CCTKReference.tex b/doc/ReferenceManual/CCTKReference.tex
index 83d79489..eff95d22 100644
--- a/doc/ReferenceManual/CCTKReference.tex
+++ b/doc/ReferenceManual/CCTKReference.tex
@@ -12365,7 +12365,7 @@ int err = CCTK_TraverseString(traverse_string, callback, callback_arg,
\begin{Parameter} {const char * traverse\_string}
List of variable and/or group names
\end{Parameter}
- \begin{Parameter} {int (*callback) (int idx, const char *optstring, void *callback\_arg)}
+ \begin{Parameter} {void (*callback) (int idx, const char *optstring, void *callback\_arg)}
Routine to call for every variable and/or group found. \code{idx} is the
Cactus variable index, \code{optstring} is the optional `\verb|{}|'
enclosed option string after the variable name, and \code{callback\_arg} is
@@ -12375,7 +12375,9 @@ int err = CCTK_TraverseString(traverse_string, callback, callback_arg,
An arbitrary argument which gets passed to the callback routine
\end{Parameter}
\begin{Parameter} {int selection}
- Decides whether group and/or variable names are accepted in the string
+ Decides whether group and/or variable names are accepted in the string.
+ Possible values are: \code{CCTK\_VAR}, \code{CCTK\_GROUP} or
+ \code{CCTK\_GROUP\_OR\_VAR}.
\end{Parameter}
\end{ParameterSection}