* Fix typos in optargs.scm.
authorNeil Jerram <neil@ossau.uklinux.net>
Sun, 15 Oct 2000 22:33:06 +0000 (22:33 +0000)
committerNeil Jerram <neil@ossau.uklinux.net>
Sun, 15 Oct 2000 22:33:06 +0000 (22:33 +0000)
ice-9/ChangeLog
ice-9/optargs.scm

index b19c0f6..8a67766 100644 (file)
@@ -1,3 +1,7 @@
+2000-10-15  Neil Jerram  <neil@ossau.uklinux.net>
+
+       * optargs.scm: Fix typos in commentary for bound? and lambda*.
+
 2000-10-10  Dirk Herrmann  <D.Herrmann@tu-bs.de>
 
        * session.scm (apropos, apropos-fold):  regexp-exec does not
index 8b74d91..5de0fa4 100644 (file)
@@ -65,7 +65,7 @@
 ;;   Checks if a variable is bound in the current environment.
 ;;
 ;; defined? doesn't quite cut it as it stands, since it only
-;; cheks bindings in the top-level environment, not those in
+;; checks bindings in the top-level environment, not those in
 ;; local scope only.
 ;;
 
 ;; lambda*-defined procedures now throw an error by default if a
 ;; keyword other than one of those specified is found in the actual
 ;; passed arguments. However, specifying #:allow-other-keys
-;; immediately after the kyword argument declarations restores the
+;; immediately after the keyword argument declarations restores the
 ;; previous behavior of ignoring unknown keywords. lambda* also now
 ;; guarantees that if the same keyword is passed more than once, the
 ;; last one passed is the one that takes effect. For example,