From d74fd0749c57cd7464bb6be988025212b080e9dd Mon Sep 17 00:00:00 2001 From: Kendell R Date: Sat, 27 Sep 2025 12:21:03 -0700 Subject: [PATCH] there"s -> there's --- src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index a959c65..3dffc84 100644 --- a/src/index.ts +++ b/src/index.ts @@ -141,7 +141,7 @@ const algorithms: JwtAlgorithms = { * @param payload The payload object. To use `nbf` (Not Before) and/or `exp` (Expiration Time) add `nbf` and/or `exp` to the payload. * @param secret A string which is used to sign the payload. * @param [options={ algorithm: "HS256", header: { typ: "JWT" } }] The options object or the algorithm. - * @throws If there"s a validation issue. + * @throws If there's a validation issue. * @returns Returns token as a `string`. */ export async function sign(payload: JwtPayload, secret: string | JsonWebKeyWithKid | CryptoKey | undefined, options: JwtSignOptions
| JwtAlgorithm = "HS256"): Promise { @@ -262,4 +262,4 @@ export default { sign, verify, decode -} \ No newline at end of file +}