]> granicus.if.org Git - python/commitdiff
Fix typo in description of raw strings: "value" --> "valid"
authorFred Drake <fdrake@acm.org>
Fri, 20 Jul 2001 14:32:28 +0000 (14:32 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 20 Jul 2001 14:32:28 +0000 (14:32 +0000)
This closes SF bug #443059.

Doc/ref/ref2.tex

index 8a44b03c3d0e50bc3c320ceb67580e7ee71650dc..e9122421c1434c748c142f648a635ecd439078fa 100644 (file)
@@ -403,7 +403,7 @@ backslashes are left in the string}.  For example, the string literal
 `n'.  String quotes can be escaped with a backslash, but the backslash
 remains in the string; for example, \code{r"\e""} is a valid string
 literal consisting of two characters: a backslash and a double quote;
-\code{r"\e"} is not a value string literal (even a raw string cannot
+\code{r"\e"} is not a valid string literal (even a raw string cannot
 end in an odd number of backslashes).  Specifically, \emph{a raw
 string cannot end in a single backslash} (since the backslash would
 escape the following quote character).  Note also that a single