summaryrefslogtreecommitdiffstats
path: root/src/file/source/string.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/file/source/string.rs')
-rw-r--r--src/file/source/string.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/file/source/string.rs b/src/file/source/string.rs
index 9c89231..a2f66cb 100644
--- a/src/file/source/string.rs
+++ b/src/file/source/string.rs
@@ -1,9 +1,9 @@
-use std::str::FromStr;
-use std::result;
use std::error::Error;
+use std::result;
+use std::str::FromStr;
-use source::Source;
use super::{FileFormat, FileSource};
+use source::Source;
/// Describes a file sourced from a string
#[derive(Clone, Debug)]