diff --git a/FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs b/FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs index bdea0d95..f01e2b7d 100644 --- a/FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs +++ b/FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs @@ -240,19 +240,19 @@ public async Task VerifyIdTokenAsync( } /// - /// Sets the specified custom claims on an existing user account. A null claims value - /// removes any claims currently set on the user account. The claims should serialize into + /// Sets the specified custom claims on an existing user account. A null claims value + /// removes any claims currently set on the user account. The claims must serialize into /// a valid JSON string. The serialized claims must not be larger than 1000 characters. /// /// If is null, empty or longer - /// than 128 characters. Or, if the serialized is larger than 1000 + /// than 128 characters. Or, if the serialized is larger than 1000 /// characters. - /// The user ID string for the custom claims will be set. Must not be null + /// The user ID string for the custom claims will be set. Must not be null /// or longer than 128 characters. /// /// The claims to be stored on the user account, and made - /// available to Firebase security rules. These must be serializable to JSON, and after - /// serialization it should not be larger than 1000 characters. + /// available to Firebase security rules. These must be serializable to JSON, and the + /// serialized claims should not be larger than 1000 characters. public async Task SetCustomUserClaimsAsync(string uid, IReadOnlyDictionary claims) { lock (_lock)