Chore: Fix typo for enum for Right value (#14575)

Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
This commit is contained in:
Dipanshu Rawat
2026-03-08 17:31:31 +05:30
committed by GitHub
parent 5271081b3a
commit 9a477dbeb9

View File

@@ -11,7 +11,7 @@ const emptyListRegex = /^(\s*)([*+-] \[[x ]\]|[*+-]|(\d+)[.)])(\s+)$/;
export enum MarkdownTableJustify {
Left = 'left',
Center = 'center',
Right = 'right,',
Right = 'right',
}
export interface MarkdownTableHeader {