Skip to content

Commit 581bf14

Browse files
committed
Correct code
1 parent 3512689 commit 581bf14

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Common/StringParsing.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ module StringPosition =
299299
/// complete repetitions of a specified sub-string.
300300
let (|EqualsRepeated|_|) (repeated, _n: MarkdownRange) =
301301
function
302-
| StartsWithRepeated repeated (_n, (v, _)) when not (String.IsNullOrWhiteSpace v) -> Some()
302+
| StartsWithRepeated repeated (_n, (v, _)) when (String.IsNullOrWhiteSpace v) -> Some()
303303
| _ -> None
304304

305305
module List =

0 commit comments

Comments
 (0)