Skip to content

Commit

Permalink
Updating comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mirzemehdi committed Oct 6, 2024
1 parent 96a4a90 commit 34de2a4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import dev.gitlive.firebase.auth.OAuthProvider
*
* [onResult] callback will return [Result] with [FirebaseUser] type.
* @param requestScopes list of request scopes type of [AppleSignInRequestScope].
* @param linkAccount if true, it will link the account with the current user.
* @param linkAccount if true, it will link the account with the current user. Default value is false
* Example Usage:
* ```
* //Apple Sign-In with Custom Button and authentication with Firebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import dev.gitlive.firebase.auth.FirebaseUser
*
* [onResult] callback will return [Result] with [FirebaseUser] type.
* @param requestScopes list of request scopes type of [AppleSignInRequestScope].
* @param linkAccount boolean value to link account with existing account.
* @param linkAccount boolean value to link account with existing account. Default value is false
* Example Usage:
* ```
* //Apple Sign-In with Custom Button and authentication with Firebase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import dev.gitlive.firebase.auth.OAuthProvider
*
* [onResult] callback will return [Result] with [FirebaseUser] type.
* @param oAuthProvider [OAuthProvider] class object.
* @param linkAccount [Boolean] flag to link account with existing user.
* @param linkAccount [Boolean] flag to link account with current user. Default value is false.
*
* Example Usage:
* ```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ private var currentNonce: String? = null
*
* [onResult] callback will return [Result] with [FirebaseUser] type.
* @param requestScopes list of request scopes type of [AppleSignInRequestScope].
* @param linkAccount if true, it will link the account with the current user. Default value is false
* Example Usage:
* ```
* //Apple Sign-In with Custom Button and authentication with Firebase
Expand Down Expand Up @@ -91,7 +92,7 @@ public actual fun AppleButtonUiContainer(
signIn(
requestScopes = requestScopes,
authorizationController = asAuthorizationControllerDelegate,
presentationContextProvider = presentationContextProvider,
presentationContextProvider = presentationContextProvider
)
}

Expand Down

0 comments on commit 34de2a4

Please sign in to comment.