From 5c8d37c3ff665f473e6090bb75d3833ef2813cda Mon Sep 17 00:00:00 2001 From: hjaber Date: Thu, 14 Nov 2024 14:19:10 -0800 Subject: [PATCH] Fix typo in JSDoc comment for signal parameter --- src/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.ts b/src/client.ts index f756acb..dbe1f00 100644 --- a/src/client.ts +++ b/src/client.ts @@ -53,7 +53,7 @@ let ongoingAuth: AbortController | null = null; * @param {'discouraged'|'preferred'|'required'} [discoverable] A "discoverable" credential can be selected using `authenticate(...)` without providing credential IDs. * Instead, a native pop-up will appear for user selection. * This may have an impact on the "passkeys" user experience and syncing behavior of the key. - * * @param {AbortSignal} [signal] An optional AbortSignal to allow aborting the registration process. + * @param {AbortSignal} [signal] An optional AbortSignal to allow aborting the registration process. * If not provided, a global AbortController is used to abort any ongoing authentication. */ export async function register(options: RegisterOptions): Promise {