Index: /trunk/doc/pslib/ChangeLogSDRS.tex
===================================================================
--- /trunk/doc/pslib/ChangeLogSDRS.tex	(revision 2371)
+++ /trunk/doc/pslib/ChangeLogSDRS.tex	(revision 2372)
@@ -1,3 +1,3 @@
-%%% $Id: ChangeLogSDRS.tex,v 1.45 2004-11-15 22:22:48 price Exp $
+%%% $Id: ChangeLogSDRS.tex,v 1.46 2004-11-16 02:20:27 price Exp $
 
 \subsection{Changes from version 00 to version 01}
@@ -377,4 +377,5 @@
   memory.
 \item Added statement on use of \code{restrict}.
+\item In \code{psSpline1D}, renamed \code{domains} to \code{knots}.
 \end{itemize}
 
Index: /trunk/doc/pslib/psLibSDRS.tex
===================================================================
--- /trunk/doc/pslib/psLibSDRS.tex	(revision 2371)
+++ /trunk/doc/pslib/psLibSDRS.tex	(revision 2372)
@@ -1,3 +1,3 @@
-%%% $Id: psLibSDRS.tex,v 1.151 2004-11-15 22:22:53 price Exp $
+%%% $Id: psLibSDRS.tex,v 1.152 2004-11-16 02:20:33 price Exp $
 \documentclass[panstarrs,spec]{panstarrs}
 
@@ -2247,5 +2247,5 @@
     int n;                              ///< Number of spline pieces
     psPolynomial1D **spline;            ///< Array of n pointers to splines
-    float *domains;                     ///< The boundaries between each spline piece.  Size is n+1.
+    float *knots;                       ///< The boundaries between each spline piece.  Size is n+1.
 } psSpline1D;
 \end{verbatim}
@@ -2257,5 +2257,5 @@
 (linear) or 3 (cubic).}  All the spline pieces shall have the same
 order polynomial (the type of polynomial is left to the
-implementation).  The \code{domains} member specifies the boundaries
+implementation).  The \code{knots} member specifies the boundaries
 between each spline piece (including the two ends).
 
@@ -2267,5 +2267,5 @@
 
 \code{psSpline1DAlloc} shall allocate and return a \code{psSpline1D},
-setting the \code{domains} on the basis of the input number of spline
+setting the \code{knots} on the basis of the input number of spline
 pieces, \code{n}, and the minimum (\code{min}) and maximum
 (\code{max}) data values.  The spline pieces shall be of the specified
@@ -2274,5 +2274,5 @@
 \code{psSpline1DAllocGeneric} shall allocate and return a
 \code{psSpline1D}, using the \code{bounds} to define the number of
-spline pieces and the \code{domains}.  The spline pieces shall be of
+spline pieces and the \code{knots}.  The spline pieces shall be of
 the specified \code{order}.
 
@@ -2510,7 +2510,7 @@
                                 const psVector *y);
 \end{verbatim}
-\code{psVectorFitSpline} shall return the spline that best fits the
+\code{psVectorFitSpline1D} shall return the spline that best fits the
 given combination of ordinates (\code{x}) and coordinates (\code{y}).
-The function shall construct a new \code{psSpline1D} based on domains
+The function shall construct a new \code{psSpline1D} based on knots
 determined from \code{x}: the domain boundaries are the data values in
 \code{x}.  As is the case for \code{psVectorFitPolynomial1D}, if
