Skip to content

Commit cdc9c92

Browse files
committed
Refactor code-style
1 parent 93e4e11 commit cdc9c92

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

index.d.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ export {gfmFootnoteFromMarkdown, gfmFootnoteToMarkdown} from './lib/index.js'
33
declare module 'mdast-util-to-markdown' {
44
interface ConstructNameMap {
55
/**
6-
* Footnote reference.
6+
* Footnote definition.
77
*
88
* ```markdown
9-
* > | A[^b].
10-
* ^^^^
9+
* > | [^a]: B.
10+
* ^^^^^^^^
1111
* ```
1212
*/
13-
footnoteReference: 'footnoteReference'
13+
footnoteDefinition: 'footnoteDefinition'
1414

1515
/**
16-
* Footnote definition.
16+
* Footnote reference.
1717
*
1818
* ```markdown
19-
* > | [^a]: B.
20-
* ^^^^^^^^
19+
* > | A[^b].
20+
* ^^^^
2121
* ```
2222
*/
23-
footnoteDefinition: 'footnoteDefinition'
23+
footnoteReference: 'footnoteReference'
2424
}
2525
}

0 commit comments

Comments
 (0)