From fdebf6dec59de20708b9305b9683e926644480d5 Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Fri, 15 Sep 2023 21:08:52 -0400 Subject: [PATCH] Delete already solved TODO. --- src/parser/greater_block.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/parser/greater_block.rs b/src/parser/greater_block.rs index b6b87856..97a00c3d 100644 --- a/src/parser/greater_block.rs +++ b/src/parser/greater_block.rs @@ -127,7 +127,6 @@ fn parameters<'s>(input: OrgSource<'s>) -> Res, OrgSource<'s>> { } fn greater_block_end<'c>(name: &'c str) -> impl ContextMatcher + 'c { - // TODO: Can this be done without making an owned copy? move |context, input: OrgSource<'_>| _greater_block_end(context, input, name) }