From 667c9a0bd709ff5689c410634047a621d2e5b8c9 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 14 Apr 2011 13:20:23 -0600 Subject: [PATCH] fix nit: "running 2nd time" instead of "re-running 2nd time" because "re-running 2nd time" should mean the 3rd run original commit: 1c604999238457ab14746c8af35216eea0d7e810 --- collects/scribble/private/run-pdflatex.rkt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/collects/scribble/private/run-pdflatex.rkt b/collects/scribble/private/run-pdflatex.rkt index 3802f808..7efec3a3 100644 --- a/collects/scribble/private/run-pdflatex.rkt +++ b/collects/scribble/private/run-pdflatex.rkt @@ -27,8 +27,9 @@ (err "didn't get a stable result after ~a runs" n)) (if (zero? n) (notify "running pdflatex on ~a" file) - (notify " re-running ~a~a time" - (add1 n) (case (add1 n) [(2) 'nd] [(3) 'rd] [else 'th]))) + (notify " running ~a~a time" + (add1 n) + (case (add1 n) [(2) 'nd] [(3) 'rd] [else 'th]))) (run) ;; see if we get a "Rerun" note, these seem to come in two flavors ;; * Label(s) may have changed. Rerun to get cross-references right.