From: Simon Sapin Date: Wed, 18 Jun 2014 22:59:40 +0000 (+0200) Subject: Revert bytes!() docstring change, and fix a typo. X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=72f0d4535715505c1cc429ef277a954ba26366bd;p=rust.git Revert bytes!() docstring change, and fix a typo. --- diff --git a/src/libstd/macros.rs b/src/libstd/macros.rs index dad162d82ad..58f65c90b3b 100644 --- a/src/libstd/macros.rs +++ b/src/libstd/macros.rs @@ -463,7 +463,7 @@ macro_rules! option_env( ($name:expr) => ({ /* compiler built-in */ }) ) /// # Example /// /// ``` - /// let rust = b"rust\xFF"; + /// let rust = bytes!("r", 'u', "st", 255); /// assert_eq!(rust[1], 'u' as u8); /// assert_eq!(rust[4], 255); /// ``` diff --git a/src/libsyntax/ext/bytes.rs b/src/libsyntax/ext/bytes.rs index 658c28f8202..ce13fa2a7c6 100644 --- a/src/libsyntax/ext/bytes.rs +++ b/src/libsyntax/ext/bytes.rs @@ -25,7 +25,7 @@ pub fn expand_syntax_ext(cx: &mut ExtCtxt, sp: Span, tts: &[ast::TokenTree]) for documentation"); cx.parse_sess.span_diagnostic.span_note(sp, "see https://github.com/rust-lang/rust/blob/master/src/etc/2014-06-rewrite-bytes-macros.py \ - for a automated migration"); + for an automated migration"); // Gather all argument expressions let exprs = match get_exprs_from_tts(cx, sp, tts) {