aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2003-05-05 16:38:05 +0000
committerjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2003-05-05 16:38:05 +0000
commit01c0e463cbf1abc763101538aaf4c0c43c8e3d58 (patch)
treed1e62e52683df272ac521ab76d1cb3584452dbbb
parentfb4f5d782f627d5fff8763ee076866b8d222f037 (diff)
fix two minor syntax botches caught by Erik:
* missing closing $ in $Header:$ tag * missing closing */ in comment neither of these changed the executable code :) git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalInterp/trunk@151 df1f8a13-aa1d-4dd4-9681-27ded5b42416
-rw-r--r--src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c b/src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c
index b98d2b1..584aec8 100644
--- a/src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c
+++ b/src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c
@@ -1,5 +1,5 @@
/* InterpLocalUniform.c -- driver for this interpolator */
-/* $Header: */
+/* $Header$ */
/*
** *****data structures and functions local to this file *****
**
@@ -83,7 +83,7 @@ enum interp_operator
{
interp_operator_Lagrange_TP, /* "Lagrange polynomial interpolation */
/* (tensor product)" */
- interp_operator_Lagrange_MD, /* "Lagrange polynomial interpolation
+ interp_operator_Lagrange_MD, /* "Lagrange polynomial interpolation */
/* (maximum degree)" */
interp_operator_Hermite, /* "Hermite polynomial interpolation" */
N_INTERP_OPERATORS /* this must be the last entry in the enum */