From 3bde9cf52dece5e446e555825bb2b3feeb0c80bb Mon Sep 17 00:00:00 2001 From: Tobias Schmitz Date: Tue, 3 Jun 2025 18:04:39 +0200 Subject: [PATCH] chore: remove todo --- crates/typst-syntax/src/lines.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/typst-syntax/src/lines.rs b/crates/typst-syntax/src/lines.rs index 63b005107..2496258b2 100644 --- a/crates/typst-syntax/src/lines.rs +++ b/crates/typst-syntax/src/lines.rs @@ -26,7 +26,6 @@ pub struct Line { } impl> Lines { - /// TODO: memoize this? pub fn new(text: S) -> Self { let lines = lines(text.as_ref()); Lines(Arc::new(Repr { lines, text }))