From cecef82386574d5e54f9e2aca3208e22c68cea72 Mon Sep 17 00:00:00 2001 From: Rob Brackett Date: Tue, 5 Sep 2023 21:57:50 -0400 Subject: [PATCH] Use english name, not type name, in comments Co-authored-by: Titus Signed-off-by: Rob Brackett --- lib/handlers/li.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/handlers/li.js b/lib/handlers/li.js index 3d38e1c..0f92760 100644 --- a/lib/handlers/li.js +++ b/lib/handlers/li.js @@ -23,7 +23,7 @@ export function li(state, node) { let clone // Check if this node starts with a checkbox (or a paragraph that starts with - // a checkbox), indicating the list item is a GFM TaskListItem. + // a checkbox), indicating the list item is a GFM task list item. let checkboxParent = node let checkbox = node.children[0] if (checkbox && checkbox.type === 'element' && checkbox.tagName === 'p') {