Skip to content

Commit

Permalink
Don't need to qualify String
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Aug 11, 2015
1 parent baf77e4 commit b70f6e5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@

use std::collections::BTreeMap;
use std::str::FromStr;
use std::string;

pub use parser::{Parser, ParserError};

Expand Down Expand Up @@ -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.
Expand Down

0 comments on commit b70f6e5

Please sign in to comment.