From 8733ec95863d35de50be2492544b43db18d31c70 Mon Sep 17 00:00:00 2001 From: Eli Barzilay Date: Fri, 12 Sep 2008 13:23:52 +0000 Subject: [PATCH] svn: r11674 original commit: ef92bf90f4da00c256c4c8e625fe002792812bd3 --- collects/scribblings/scribble/reader.scrbl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/collects/scribblings/scribble/reader.scrbl b/collects/scribblings/scribble/reader.scrbl index c940a894..0b4babd0 100644 --- a/collects/scribblings/scribble/reader.scrbl +++ b/collects/scribblings/scribble/reader.scrbl @@ -188,9 +188,9 @@ The flip side of this is: how can an @"@" sign be used in Scheme code? This is almost never an issue, because Scheme strings and characters are still read the same, and because @litchar["@"] is set as a non-terminating reader macro so it can be used in Scheme identifiers -as usual except when it is the first character of an identifier. In -the last case, you need to quote the identifier like other -non-standard characters --- with a backslash or with vertical bars: +as usual, except when it is the first character of an identifier. In +this case, you need to quote the identifier like other non-standard +characters --- with a backslash or with vertical bars: @scribble-examples|==={ (define \@email "foo@bar.com")