bkyk8rc3zvpnsf5inmcqq4n3k98cv6hj-my-site-hyper-literate-git.test.suzanne.soy-0.0.1

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 667c9a0bd709ff5689c410634047a621d2e5b8c9
parent 334060a553e662ecf6ff06a0a0d38f83a4d9c567
Author: Matthew Flatt <mflatt@racket-lang.org>
Date:   Thu, 14 Apr 2011 13:20:23 -0600

fix nit: "running 2nd time" instead of "re-running 2nd time"
 because "re-running 2nd time" should mean the 3rd run

original commit: 1c604999238457ab14746c8af35216eea0d7e810

Diffstat:
Mcollects/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 @@ -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.