From 9d62f17bc48a02b04c6cb824860c21699c477c4b Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Tue, 28 Jan 2025 19:33:07 -0500 Subject: [PATCH] fix(web): correct doc comment --- lib/binding_web/src/parser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/binding_web/src/parser.ts b/lib/binding_web/src/parser.ts index 11aca7ea..4fd3323d 100644 --- a/lib/binding_web/src/parser.ts +++ b/lib/binding_web/src/parser.ts @@ -38,7 +38,7 @@ export interface ParseOptions { /** * A function that is called periodically during parsing to check * whether parsing should be cancelled. If the progress callback returns - * `false`, then parsing will be cancelled. You can also use this to instrument + * `true`, then parsing will be cancelled. You can also use this to instrument * parsing and check where the parser is at in the document. The progress callback * takes a single argument, which is a {@link ParseState} representing the current * state of the parser.