Skip to content

Commit 8db241f

Browse files
committed
Minor API doc update
1 parent 3bb875e commit 8db241f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -240,19 +240,19 @@ public async Task<FirebaseToken> VerifyIdTokenAsync(
240240
}
241241

242242
/// <summary>
243-
/// Sets the specified custom claims on an existing user account. A null claims value
243+
/// Sets the specified custom claims on an existing user account. A null claims value
244244
/// removes any claims currently set on the user account. The claims should serialize into
245245
/// a valid JSON string. The serialized claims must not be larger than 1000 characters.
246246
/// </summary>
247247
/// <exception cref="ArgumentException">If <paramref name="uid"/> is null, empty or longer
248-
/// than 128 characters. Or, if the serialized <paramref name="claims"/> is larger than 1000
248+
/// than 128 characters. Or, if the serialized <paramref name="claims"/> is larger than 1000
249249
/// characters.</exception>
250-
/// <param name="uid">The user ID string for the custom claims will be set. Must not be null
250+
/// <param name="uid">The user ID string for the custom claims will be set. Must not be null
251251
/// or longer than 128 characters.
252252
/// </param>
253253
/// <param name="claims">The claims to be stored on the user account, and made
254-
/// available to Firebase security rules. These must be serializable to JSON, and after
255-
/// serialization it should not be larger than 1000 characters.</param>
254+
/// available to Firebase security rules. These must be serializable to JSON, and the
255+
/// serialized claims should not be larger than 1000 characters.</param>
256256
public async Task SetCustomUserClaimsAsync(string uid, IReadOnlyDictionary<string, object> claims)
257257
{
258258
lock (_lock)

0 commit comments

Comments
 (0)