Skip to content

Commit b94c9e9

Browse files
committed
Merged with master
2 parents 65905e7 + 21ca44b commit b94c9e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ public async Task<FirebaseToken> VerifyIdTokenAsync(
282282

283283
/// <summary>
284284
/// Sets the specified custom claims on an existing user account. A null claims value
285-
/// removes any claims currently set on the user account. The claims should serialize into
285+
/// removes any claims currently set on the user account. The claims must serialize into
286286
/// a valid JSON string. The serialized claims must not be larger than 1000 characters.
287287
/// </summary>
288288
/// <returns>A task that completes when the claims have been set.</returns>
@@ -293,8 +293,8 @@ public async Task<FirebaseToken> VerifyIdTokenAsync(
293293
/// or longer than 128 characters.
294294
/// </param>
295295
/// <param name="claims">The claims to be stored on the user account, and made
296-
/// available to Firebase security rules. These must be serializable to JSON, and after
297-
/// serialization it should not be larger than 1000 characters.</param>
296+
/// available to Firebase security rules. These must be serializable to JSON, and the
297+
/// serialized claims should not be larger than 1000 characters.</param>
298298
public async Task SetCustomUserClaimsAsync(string uid, IReadOnlyDictionary<string, object> claims)
299299
{
300300
lock (this.authLock)

0 commit comments

Comments
 (0)