diff options
Diffstat (limited to 'src/parser.rs')
-rw-r--r-- | src/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.rs b/src/parser.rs index 23afb37..dc2c07a 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -1,7 +1,7 @@ //! Turn a string of markdown into events. use crate::content::document::document; -use crate::tokenizer::{Event, Point}; +use crate::event::{Event, Point}; use crate::{Constructs, Options}; /// Information needed, in all content types, when parsing markdown. |