From: Lymia Aluysia Date: Thu, 22 Mar 2018 15:35:49 +0000 (-0500) Subject: Clarify description of raw_identifiers feature flag. X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=57f9c4d6d9ba7d48b9f64193dd037a54e11ef7b4;p=rust.git Clarify description of raw_identifiers feature flag. --- diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 153e42c8214..c64e0f514de 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -453,7 +453,7 @@ pub fn walk_feature_fields(&self, mut f: F) // `use path as _;` and `extern crate c as _;` (active, underscore_imports, "1.26.0", Some(48216), None), - // Raw identifiers allowing keyword names to be used + // Allows keywords to be escaped for use as identifiers (active, raw_identifiers, "1.26.0", Some(48589), None), );