Index: trunk/archive/pslib/include/psMatrix.h
===================================================================
--- trunk/archive/pslib/include/psMatrix.h	(revision 247)
+++ trunk/archive/pslib/include/psMatrix.h	(revision 250)
@@ -15,12 +15,12 @@
 /** Constructor */
 psMatrix *
-psMatrixAlloc(int Xdimen,			//!< x dimension of new matrix
-	    int Ydimen			//!< y dimension of new matrix
-	    );
+psMatrixAlloc(int Xdimen,		//!< x dimension of new matrix
+	      int Ydimen		//!< y dimension of new matrix
+    );
 
 /** Destructor */
 void
 psMatrixFree(psMatrix *restrict myMatrix	//!< Matrix to destroy
-	    );
+    );
 
 /***********************************************************************************************************/
@@ -33,5 +33,5 @@
 	       const psMatrix *myMatrix, //!< Matrix to be inverted
 	       float *restrict determinant //!< Determinant to return, or NULL
-	       );
+    );
 
 /** Matrix determinant */
@@ -54,7 +54,8 @@
 		  );
 
-/** Convert matrix to vector.  Mainly for a 1-d matrix. */
+/** Convert matrix to vector.  Intended for a 1-d matrix. */
 psVector *
 psMatrixToVector(psMatrix *myMatrix	//!< Matrix to convert
+    );
 
 #endif
