diff options
author | Alex Crichton <alex@alexcrichton.com> | 2015-08-11 09:18:52 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2015-08-11 09:18:52 -0700 |
commit | b70f6e53b20c8f90f525219b1db7e99f6ef417dc (patch) | |
tree | db07abd1873e328786988e2a3ef83224f100d675 | |
parent | baf77e44c3f645421ded4c583118821a474cce5d (diff) | |
download | milf-rs-b70f6e53b20c8f90f525219b1db7e99f6ef417dc.tar.gz milf-rs-b70f6e53b20c8f90f525219b1db7e99f6ef417dc.zip |
Don't need to qualify String
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -43,7 +43,6 @@ use std::collections::BTreeMap; use std::str::FromStr; -use std::string; pub use parser::{Parser, ParserError}; @@ -76,7 +75,7 @@ pub enum Value { pub type Array = Vec<Value>; /// Type representing a TOML table, payload of the Value::Table variant -pub type Table = BTreeMap<string::String, Value>; +pub type Table = BTreeMap<String, Value>; impl Value { /// Tests whether this and another value have the same type. |