From 903d7c06bbc4222a7e68514dabbcfe33f7366fb0 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Mon, 24 Jan 2011 14:00:08 -0500 Subject: [PATCH] Ceci n'est pas une grammar mistake. --- collects/scribblings/guide/simple-syntax.scrbl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribblings/guide/simple-syntax.scrbl b/collects/scribblings/guide/simple-syntax.scrbl index b768146bdd..8f4578b35b 100644 --- a/collects/scribblings/guide/simple-syntax.scrbl +++ b/collects/scribblings/guide/simple-syntax.scrbl @@ -228,7 +228,7 @@ click on an identifier to get full details about its use. (code:line (string-append "rope" "twine" "yarn") (code:comment @#,t{append strings})) (code:line (substring "corduroys" 0 4) (code:comment @#,t{extract a substring})) (code:line (string-length "shoelace") (code:comment @#,t{get a string's length})) -(code:line (string? "c'est ne pas une string") (code:comment @#,t{recognize strings})) +(code:line (string? "Ceci n'est pas une string.") (code:comment @#,t{recognize strings})) (string? 1) (code:line (sqrt 16) (code:comment @#,t{find a square root})) (sqrt -16)