Skip to content

Commit 21ca44b

Browse files
authored
Merge pull request #22 from firebase/hkj-doc-update
Minor API doc update
2 parents 3bb875e + 85ff411 commit 21ca44b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs

Lines changed: 6 additions & 6 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
244-
/// removes any claims currently set on the user account. The claims should serialize into
243+
/// Sets the specified custom claims on an existing user account. A null claims value
244+
/// removes any claims currently set on the user account. The claims must 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)