Skip to content

Commit

Permalink
Revert bytes!() docstring change, and fix a typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin authored and alexcrichton committed Jun 19, 2014
1 parent 108b8b6 commit 72f0d45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libstd/macros.rs
Expand Up @@ -463,7 +463,7 @@ pub mod builtin {
/// # 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);
/// ```
Expand Down
2 changes: 1 addition & 1 deletion src/libsyntax/ext/bytes.rs
Expand Up @@ -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) {
Expand Down

0 comments on commit 72f0d45

Please sign in to comment.