Fix typos in docstrings and function names.
[sbcl.git] / src / pcl / gray-streams-class.lisp
index c0051a1..0f2f5fb 100644 (file)
     ((open-p :initform t
              :accessor stream-open-p))
     #+sb-doc
-    (:documentation "the base class for all Gray streams")))
+    (:documentation "Base class for all Gray streams.")))
 
 ;;; Define the stream classes.
 (defclass fundamental-input-stream (fundamental-stream) nil
   #+sb-doc
-  (:documentation "a superclass of all Gray input streams"))
+  (:documentation "Superclass of all Gray input streams."))
 
 (defclass fundamental-output-stream (fundamental-stream) nil
   #+sb-doc
-  (:documentation "a superclass of all Gray output streams"))
+  (:documentation "Superclass of all Gray output streams."))
 
 (defclass fundamental-character-stream (fundamental-stream) nil
   #+sb-doc
-  (:documentation "a superclass of all Gray streams whose element-type is a subtype of character"))
+  (:documentation
+   "Superclass of all Gray streams whose element-type is a subtype of character."))
 
 (defclass fundamental-binary-stream (fundamental-stream) nil
   #+sb-doc
-  (:documentation "a superclass of all Gray streams whose element-type is a subtype of unsigned-byte or signed-byte"))
+  (:documentation "Superclass of all Gray streams whose element-type
+is a subtype of unsigned-byte or signed-byte."))
 
 (defclass fundamental-character-input-stream
     (fundamental-input-stream fundamental-character-stream) nil
   #+sb-doc
-  (:documentation "a superclass of all Gray input streams whose element-type is a subtype of character"))
+  (:documentation "Superclass of all Gray input streams whose element-type
+is a subtype of character."))
 
 (defclass fundamental-character-output-stream
     (fundamental-output-stream fundamental-character-stream) nil
   #+sb-doc
-  (:documentation "a superclass of all Gray output streams whose element-type is a subtype of character"))
+  (:documentation "Superclass of all Gray output streams whose element-type
+is a subtype of character."))
 
 (defclass fundamental-binary-input-stream
     (fundamental-input-stream fundamental-binary-stream) nil
   #+sb-doc
-  (:documentation "a superclass of all Gray input streams whose element-type is a subtype of unsigned-byte or signed-byte"))
+  (:documentation "Superclass of all Gray input streams whose element-type
+is a subtype of unsigned-byte or signed-byte."))
 
 (defclass fundamental-binary-output-stream
     (fundamental-output-stream fundamental-binary-stream) nil
-    #+sb-doc
-  (:documentation "a superclass of all Gray output streams whose element-type is a subtype of unsigned-byte or signed-byte"))
+  #+sb-doc
+  (:documentation "Superclass of all Gray output streams whose element-type
+is a subtype of unsigned-byte or signed-byte."))
 \f
 ;;; This is not in the Gray stream proposal, so it is left here
 ;;; as example code.