Fix a typo in the previous commit.
authorStas Boukarev <stassats@gmail.com>
Tue, 18 Dec 2012 17:51:09 +0000 (21:51 +0400)
committerStas Boukarev <stassats@gmail.com>
Tue, 18 Dec 2012 17:51:09 +0000 (21:51 +0400)
-1 should be ~S.

src/code/toplevel.lisp

index f5a7aa9..d3f523f 100644 (file)
@@ -198,7 +198,7 @@ any non-negative real number."
   (when (or (not (realp seconds))
             (minusp seconds))
     (error 'simple-type-error
-           :format-control "Invalid argument to SLEEP: -1, ~
+           :format-control "Invalid argument to SLEEP: ~S, ~
                             should be a non-negative real."
            :format-arguments (list seconds)
            :datum seconds