chore: remove todo

This commit is contained in:
Tobias Schmitz 2025-06-03 18:04:39 +02:00
parent a6ab61e3c7
commit 3bde9cf52d
No known key found for this signature in database

View File

@ -26,7 +26,6 @@ pub struct Line {
}
impl<S: AsRef<str>> Lines<S> {
/// TODO: memoize this?
pub fn new(text: S) -> Self {
let lines = lines(text.as_ref());
Lines(Arc::new(Repr { lines, text }))