www

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

commit c6783850d1713583ca5faf69a95637372505cb27
parent 6e6c91c4cdeb034ba59fc04623bf1a102e36a76d
Author: Georges Dupéron <georges.duperon@gmail.com>
Date:   Sat,  6 May 2017 03:39:32 +0200

Fixed layout (overfull hbox)

Diffstat:
Mscribblings/examples.scrbl | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/scribblings/examples.scrbl b/scribblings/examples.scrbl @@ -47,7 +47,9 @@ by your macro. [(_ vᵢ …) #'(let ([tempᵢ vᵢ] …) (unless (integer? tempᵢ) - (printf "Warning: ~a should be an integer, got ~a.\n" 'vᵢ tempᵢ)) + (printf "Warning: ~a should be an integer, got ~a.\n" + 'vᵢ + tempᵢ)) … (+ tempᵢ …))])) (sum 1 2 3)