From 8a3722dbcd49d54507eef0e5130a7ca23f06871c Mon Sep 17 00:00:00 2001 From: Matthew Woodcraft Date: Sat, 30 Nov 2024 23:14:05 +0000 Subject: [PATCH] Claim to follow Unicode 16 for lexing identifiers. This change happened in Rust 1.83. --- src/identifiers.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/identifiers.md b/src/identifiers.md index a10a3f9f3..c510321bb 100644 --- a/src/identifiers.md +++ b/src/identifiers.md @@ -19,7 +19,7 @@ r[ident.syntax] r[ident.unicode] -Identifiers follow the specification in [Unicode Standard Annex #31][UAX31] for Unicode version 15.0, with the additions described below. Some examples of identifiers: +Identifiers follow the specification in [Unicode Standard Annex #31][UAX31] for Unicode version 16.0, with the additions described below. Some examples of identifiers: * `foo` * `_identifier` @@ -89,5 +89,5 @@ It is an error to use the RESERVED_RAW_IDENTIFIER token `r#_` in order to avoid [proc-macro]: procedural-macros.md [reserved]: keywords.md#reserved-keywords [strict]: keywords.md#strict-keywords -[UAX15]: https://www.unicode.org/reports/tr15/tr15-53.html -[UAX31]: https://www.unicode.org/reports/tr31/tr31-37.html +[UAX15]: https://www.unicode.org/reports/tr15/tr15-56.html +[UAX31]: https://www.unicode.org/reports/tr31/tr31-41.html