summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-09-12 09:35:51 +0000
committergoodale <goodale@17b73243-c579-4c4c-a9d2-2d5706c11dac>2001-09-12 09:35:51 +0000
commitc1ec8c680674e33b30358fb09aebe42711ee623b (patch)
tree0e8f1053e6b0a30baeb53cdc5b335e381eefecbd
parentee7f7c525b2b75e0bd6041248021c9d982f52858 (diff)
Fixing some typos in example driver code.
Tom git-svn-id: http://svn.cactuscode.org/flesh/trunk@2350 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rw-r--r--doc/UsersGuide/Infrastructure.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/UsersGuide/Infrastructure.tex b/doc/UsersGuide/Infrastructure.tex
index 6e4db04a..04d92d3a 100644
--- a/doc/UsersGuide/Infrastructure.tex
+++ b/doc/UsersGuide/Infrastructure.tex
@@ -167,7 +167,7 @@ describe in general, but one simple example might be
struct SimpleExtension
{
/* The data assocatiated with each variable */
- /* data[var][timelevel][ijk]
+ /* data[var][timelevel][ijk] */
void ***data
} ;
@@ -177,7 +177,7 @@ with a SetupGH routine like.
\begin{verbatim}
-struct SimpleExtension *SimpleSetupGH(t_Fleshconfig *config, int conv_level, cGH *GH)
+struct SimpleExtension *SimpleSetupGH(tFleshConfig *config, int conv_level, cGH *GH)
{
struct SimpleExtension *extension;