Skip to content

Commit 74d80aa

Browse files
authored
Fix breif typo (#10761)
1 parent a026bfc commit 74d80aa

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

FirebaseAuth/Sources/Backend/RPC/FIRSignInWithGameCenterResponse.h

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,49 +23,49 @@ NS_ASSUME_NONNULL_BEGIN
2323
@interface FIRSignInWithGameCenterResponse : NSObject <FIRAuthRPCResponse>
2424

2525
/** @property IDToken
26-
@breif Either an authorization code suitable for performing an STS token exchange, or the access
26+
@brief Either an authorization code suitable for performing an STS token exchange, or the access
2727
token from Secure Token Service, depending on whether @c returnSecureToken is set on the
2828
request.
2929
*/
3030
@property(nonatomic, copy, readonly, nullable) NSString *IDToken;
3131

3232
/** @property refreshToken
33-
@breif @breif The refresh token from Secure Token Service.
33+
@brief The refresh token from Secure Token Service.
3434
*/
3535
@property(nonatomic, copy, readonly, nullable) NSString *refreshToken;
3636

3737
/** @property localID
38-
@breif @breif The Firebase Auth user ID.
38+
@brief The Firebase Auth user ID.
3939
*/
4040
@property(nonatomic, copy, readonly, nullable) NSString *localID;
4141

4242
/** @property playerID
43-
@breif @breif The verified player ID.
43+
@brief The verified player ID.
4444
*/
4545
@property(nonatomic, copy, readonly, nullable) NSString *playerID;
4646

4747
/** @property teamPlayerID
48-
@breif @breif The verified team player ID.
48+
@brief The verified team player ID.
4949
*/
5050
@property(nonatomic, copy, readonly, nullable) NSString *teamPlayerID;
5151

5252
/** @property gamePlayerID
53-
@breif @breif The verified game player ID.
53+
@brief The verified game player ID.
5454
*/
5555
@property(nonatomic, copy, readonly, nullable) NSString *gamePlayerID;
5656

5757
/** @property approximateExpirationDate
58-
@breif The approximate expiration date of the access token.
58+
@brief The approximate expiration date of the access token.
5959
*/
6060
@property(nonatomic, copy, readonly, nullable) NSDate *approximateExpirationDate;
6161

6262
/** @property isNewUser
63-
@breif Flag indicating that the user signing in is a new user and not a returning user.
63+
@brief Flag indicating that the user signing in is a new user and not a returning user.
6464
*/
6565
@property(nonatomic, assign) BOOL isNewUser;
6666

6767
/** @property displayName
68-
@breif The user's Game Center display name.
68+
@brief The user's Game Center display name.
6969
*/
7070
@property(nonatomic, copy, readonly, nullable) NSString *displayName;
7171

0 commit comments

Comments
 (0)