Skip to content

Commit f7cc7cb

Browse files
committed
docs: fix typo
1 parent 4216c12 commit f7cc7cb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,8 @@ assertFalse(isQuotedPair("\\"));
653653
### isQuotedString
654654

655655
Whether the input is
656-
[quoted-string](https://www.rfc-editor.org/rfc/rfc9110.html#section-5.6.4-2).
656+
[quoted-string](https://www.rfc-editor.org/rfc/rfc9110.html#section-5.6.4-2) or
657+
not.
657658

658659
```ts
659660
import { isQuotedString } from "https://deno.land/x/http_utils@$VERSION/quoted_string.ts";

quoted_string.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export type QuotedString = `"${string}"`;
7272
const reQuotedString =
7373
/^"(?:[\t \x21\x23-\x5B\x5D-\x7E\x80-\xFF]|\\[\t \x21-\x7E\x80-\xFF])*?"$/;
7474

75-
/** Whether the input is [quoted-string](https://www.rfc-editor.org/rfc/rfc9110.html#section-5.6.4-2).
75+
/** Whether the input is [quoted-string](https://www.rfc-editor.org/rfc/rfc9110.html#section-5.6.4-2) or not.
7676
*
7777
* @example
7878
* ```ts

0 commit comments

Comments
 (0)