From d87dc75500a2e73d9521135054b42c18e6eae987 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Thu, 11 Aug 2022 14:53:42 +0200 Subject: Refactor to move some code to `event.rs` --- src/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/parser.rs') 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. -- cgit