| commit | d0bb3646cf05ce8b96bc3fb7378d71a2001c68d8 | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Sun Mar 15 23:27:11 2020 -0700 |
| committer | David Tolnay <dtolnay@gmail.com> | Sun Mar 15 23:27:49 2020 -0700 |
| tree | 0a9da6acd3745c039c86fa834ed4c40e172cce54 | |
| parent | c21b20ac0fc30845ce1b25377b7c09d9d6aef300 [diff] [blame] |
Remove Span wrapper type
diff --git a/syntax/mod.rs b/syntax/mod.rs index 39198cc..8c7e5ca 100644 --- a/syntax/mod.rs +++ b/syntax/mod.rs
@@ -9,17 +9,15 @@ mod impls; mod parse; pub mod set; -mod span; mod tokens; pub mod types; -use proc_macro2::Ident; +use proc_macro2::{Ident, Span}; use syn::{LitStr, Token}; pub use self::atom::Atom; pub use self::doc::Doc; pub use self::parse::parse_items; -pub use self::span::Span; pub use self::types::Types; pub enum Api {