diff --git a/solve-minimize-fit/minimization-one.lisp b/solve-minimize-fit/minimization-one.lisp
index 06d5a934025cbcea9f4f64d8fb0a06afe8fd0592..8b10aa38c2815abe5ffeb62de04818e291fee9cb 100644
--- a/solve-minimize-fit/minimization-one.lisp
+++ b/solve-minimize-fit/minimization-one.lisp
@@ -1,6 +1,6 @@
 ;; Univariate minimization
 ;; Liam Healy Tue Jan  8 2008 - 21:02
-;; Time-stamp: <2009-12-27 10:05:32EST minimization-one.lisp>
+;; Time-stamp: <2010-07-01 11:55:38EDT minimization-one.lisp>
 ;;
 ;; Copyright 2008, 2009 Liam M. Healy
 ;; Distributed under the terms of the GNU General Public License
@@ -31,10 +31,11 @@
     "gsl_min_fminimizer"
   ((type :pointer))
   "one-dimensional minimizer"
-  :documentation			; FDL
-  "Make an instance of a minimizer of the given type.  Optionally
-   set to use the function and the initial search interval [lower,
-   upper], with a guess for the location of the minimum."
+  :documentation
+  "Make an instance of a minimizer of the given type.  Specify
+   a guess of the minimum point, the search interval
+   (x-minimum x-lower x-upper) and optionally 
+   function values at those points (f-minimum f-lower f-upper)."
   :callbacks
   (callback fnstruct nil (function :double (:input :double) :slug))
   :initialize-suffix ("set" "set_with_values")