commit | 32954efc78fe334d96b2c8d7919dd2fc8b2fc2a0 | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Tue Dec 26 22:43:16 2017 -0500 |
committer | David Tolnay <dtolnay@gmail.com> | Tue Dec 26 22:53:32 2017 -0500 |
tree | 7407e4c492a2ceeb4bd29c0a45339711b9bc95ab | |
parent | 5a20f63f2f3920b4ad14d5a6caf57a8e35986602 [diff] [blame] |
Rename mod 'tokens' to 'token'
diff --git a/src/parsers.rs b/src/parsers.rs index 492d16f..d9361a1 100644 --- a/src/parsers.rs +++ b/src/parsers.rs
@@ -668,7 +668,7 @@ /// extern crate proc_macro2; /// /// use syn::{Ident, TokenTree}; -/// use syn::tokens::Paren; +/// use syn::token::Paren; /// use proc_macro2::TokenStream; /// /// // Parse a macro invocation like `stringify!($args)`.