Skip to content

Make some doc comment changes #6229

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/auth/src/core/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ export function onIdTokenChanged(
*
* @param auth - The {@link Auth} instance.
* @param callback - callback triggered before new user value is set.
* If this throws, it will block the user from being set.
* @param onAbort - callback triggered if a later before state changed
* If this throws, it blocks the user from being set.
* @param onAbort - callback triggered if a later `beforeAuthStateChanged()`
* callback throws, allowing you to undo any side effects.
*/
export function beforeAuthStateChanged(
Expand Down
4 changes: 2 additions & 2 deletions packages/auth/src/model/public_types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ export interface Auth {
* sets a new user.
*
* @param callback - callback triggered before new user value is set.
* If this throws, it will block the user from being set.
* @param onAbort - callback triggered if a later before state changed
* If this throws, it blocks the user from being set.
* @param onAbort - callback triggered if a later `beforeAuthStateChanged()`
* callback throws, allowing you to undo any side effects.
*/
beforeAuthStateChanged(
Expand Down