Skip to content

Commit c8f2e07

Browse files
authored
Fix comment of some token types
Closes micromarkGH-184. Reviewed-by: Titus Wormer <tituswormer@gmail.com>
1 parent 1331d1a commit c8f2e07

File tree

1 file changed

+6
-6
lines changed
  • packages/micromark-util-symbol/lib

1 file changed

+6
-6
lines changed

packages/micromark-util-symbol/lib/types.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -405,22 +405,22 @@ export const types = /** @type {const} */ ({
405405
// The optional ` ` of a block quote prefix.
406406
blockQuotePrefixWhitespace: 'blockQuotePrefixWhitespace',
407407

408-
// Whole unordered list:
408+
// Whole ordered list:
409409
//
410410
// ```markdown
411-
// - a
412-
// b
411+
// 1. a
412+
// b
413413
// ```
414414
//
415415
// Includes `listItemPrefix`, flow, and optionally `listItemIndent` on further
416416
// lines.
417417
listOrdered: 'listOrdered',
418418

419-
// Whole ordered list:
419+
// Whole unordered list:
420420
//
421421
// ```markdown
422-
// 1. a
423-
// b
422+
// - a
423+
// b
424424
// ```
425425
//
426426
// Includes `listItemPrefix`, flow, and optionally `listItemIndent` on further

0 commit comments

Comments
 (0)