aboutsummaryrefslogtreecommitdiff
path: root/src/text_format/lexer/str_lit.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/text_format/lexer/str_lit.rs')
-rw-r--r--src/text_format/lexer/str_lit.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/text_format/lexer/str_lit.rs b/src/text_format/lexer/str_lit.rs
index caa98f1..15ffa5b 100644
--- a/src/text_format/lexer/str_lit.rs
+++ b/src/text_format/lexer/str_lit.rs
@@ -1,8 +1,9 @@
+use std::fmt;
+use std::string::FromUtf8Error;
+
use super::lexer_impl::Lexer;
use super::lexer_impl::LexerError;
use crate::text_format::lexer::ParserLanguage;
-use std::fmt;
-use std::string::FromUtf8Error;
#[derive(Debug)]
pub enum StrLitDecodeError {