From ee967aa634b5f8e9d30329d587538f1371a5da95 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 15 Aug 2022 11:40:40 +0200 Subject: Refactor to move `content` to `construct` --- src/tokenizer.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/tokenizer.rs') diff --git a/src/tokenizer.rs b/src/tokenizer.rs index dcd34ac..5b5e311 100644 --- a/src/tokenizer.rs +++ b/src/tokenizer.rs @@ -154,15 +154,15 @@ pub struct TokenizeState<'a> { // Couple of media related fields. /// List of usable label starts. /// - /// Used when tokenizing [text content][crate::content::text]. + /// Used when tokenizing [text content][crate::construct::text]. pub label_starts: Vec, /// List of unusable label starts. /// - /// Used when tokenizing [text content][crate::content::text]. + /// Used when tokenizing [text content][crate::construct::text]. pub label_starts_loose: Vec, /// Stack of images and links. /// - /// Used when tokenizing [text content][crate::content::text]. + /// Used when tokenizing [text content][crate::construct::text]. pub labels: Vec