diff --git a/README b/README
index 96b68555cd1ccb642f12a42fd7f2f12d3659f58e..a4e6c5b029e79bc9f2d326b3087ddee5282c5989 100644
--- a/README
+++ b/README
@@ -85,7 +85,7 @@ function force (future &rest values) => nil
 
 macro pexec (&body body) => future
 
-  A shorthand for (pcall (lambda () ...)).
+  Shorthand for (pcall (lambda () ...))
 
 macro plet ((&rest bindings) &body body)
 
@@ -126,3 +126,7 @@ function select-timeout (timeout &rest futures) => future or nil
 macro pfuncall (function &rest args) => result
 
   Evaluates args in parallel before funcalling the given function on them.
+
+function touch (x) => value
+
+  If x is a future, yields its value, otherwise returns x.
diff --git a/library.lisp b/library.lisp
index a2a5630d79297b41976577e9b88f4c65f255f144..19950052b365e93ebb8c0d8547bdd2a191d3693a 100644
--- a/library.lisp
+++ b/library.lisp
@@ -1,7 +1,7 @@
 (in-package #:eager-future2)
 
 (defmacro pexec (&body body)
-  "A shorthand for (pcall (lambda () ...))."
+  "Shorthand for (pcall (lambda () ...))"
   `(pcall (lambda () ,@body)))
 
 (defmacro plet ((&rest bindings) &body body)
@@ -78,8 +78,7 @@ elapsed, or the first yieldable future otherwise."
        (funcall ,function ,@syms))))
 
 (defun touch (x)
-  "If x is a future, yields its value, otherwise returns x.
-Borrowed from MultiLisp."
+  "If x is a future, yields its value, otherwise returns x."
   (if (typep x 'future)
       (yield x)
       x))
diff --git a/scheduler.lisp b/scheduler.lisp
index 8b602089660d34a3b365aa34765e95d9fde8a58d..9cd7fbf3db6748a280ee0a9f68fb6ded55231751 100644
--- a/scheduler.lisp
+++ b/scheduler.lisp
@@ -29,10 +29,14 @@
   (with-recursive-lock-held (*thread-counter-lock*) (incf *total-threads*)))
 
 (defun thread-pool-size ()
+  "Returns the current number of threads in the thread pool. This
+number determines the maximum amount of speculative futures that can
+be computed at the same time."
   (with-recursive-lock-held (*thread-counter-lock*)
     *total-threads*))
 
 (defun advise-thread-pool-size (new-size)
+  "Attempts to set the amount of threads in the thread pool to given value."
   (with-recursive-lock-held (*thread-counter-lock*)
     (if (< *total-threads* new-size)
         (loop repeat (- new-size *total-threads*) do (make-pool-thread))