Skip to content

Commit

Permalink
Fix typo in JSDoc comment for signal parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
hjaber committed Nov 14, 2024
1 parent ccac96a commit 5c8d37c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<RegistrationJSON> {
Expand Down

0 comments on commit 5c8d37c

Please sign in to comment.