Fix typo in previous change.
authorChris Hanson <org/chris-hanson/cph>
Tue, 8 May 2018 05:08:01 +0000 (22:08 -0700)
committerChris Hanson <org/chris-hanson/cph>
Tue, 8 May 2018 05:08:01 +0000 (22:08 -0700)
src/runtime/error.scm

index 5a4c5e495d5900052b286f9e6cda1f2e18549f6a..beed733ac3023e96c58a4f00fbe49d3947f22797 100644 (file)
@@ -663,8 +663,7 @@ USA.
 (define (signal-file-operation continuation index verb noun reason
                               operator operands)
   (with-restart 'use-value
-      (string-append "New " noun
-                    " name (an expression to be evaluated)")
+      (string-append "Try to " verb " a different " noun ".")
       (lambda (operand)
        (within-continuation continuation
          (lambda ()
@@ -673,14 +672,13 @@ USA.
                     (append! head
                              (cons operand (cdr tail))))))))
       (let ((prompt
-            (string-append "Try to " verb " a different " noun
-                           ".")))
+            (string-append "New " noun
+                           " name (an expression to be evaluated)")))
        (lambda ()
          (values (prompt-for-evaluated-expression prompt))))
     (lambda ()
       (with-restart 'retry
-         (string-append "Try to " verb " the same " noun
-                        " again.")
+         (string-append "Try to " verb " the same " noun " again.")
          (lambda ()
            (within-continuation continuation
              (lambda ()