about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohn Clements <clements@racket-lang.org>2013-03-28 10:23:20 -0700
committerJohn Clements <clements@racket-lang.org>2013-03-28 10:23:20 -0700
commitdcb8fa8f35da8abd8a3a6ed9d542f2e04b4c4d69 (patch)
treeb426a47b175aa49b97b6e3d4e5af0479ab43a254
parent81d30ade6177fcfd2319ce139b98722bbe7f4ed3 (diff)
downloadrust-dcb8fa8f35da8abd8a3a6ed9d542f2e04b4c4d69.tar.gz
rust-dcb8fa8f35da8abd8a3a6ed9d542f2e04b4c4d69.zip
added defn of non_slash_or_star
-rw-r--r--doc/rust.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/rust.md b/doc/rust.md
index b45a426c6b3..ab337214148 100644
--- a/doc/rust.md
+++ b/doc/rust.md
@@ -125,7 +125,7 @@ but a small number are defined in terms of Unicode properties or explicit codepo
 ## Special Unicode Productions
 
 The following productions in the Rust grammar are defined in terms of Unicode properties:
-`ident`, `non_null`, `non_star`, `non_eol`, `non_slash`, `non_single_quote` and `non_double_quote`.
+`ident`, `non_null`, `non_star`, `non_eol`, `non_slash_or_star`, `non_single_quote` and `non_double_quote`.
 
 ### Identifiers
 
@@ -147,7 +147,7 @@ Some productions are defined by exclusion of particular Unicode characters:
   - `non_null` is any single Unicode character aside from `U+0000` (null)
   - `non_eol` is `non_null` restricted to exclude `U+000A` (`'\n'`)
   - `non_star` is `non_null` restricted to exclude `U+002A` (`*`)
-  - `non_slash` is `non_null` restricted to exclude `U+002F` (`/`)
+  - `non_slash_or_star` is `non_null` restricted to exclude `U+002F` (`/`) and `U+002A` (`*`)
   - `non_single_quote` is `non_null` restricted to exclude `U+0027`  (`'`)
   - `non_double_quote` is `non_null` restricted to exclude `U+0022` (`"`)