From 8db241f57cd417c70ba72f46c70793571f5844ed Mon Sep 17 00:00:00 2001 From: hiranya911 Date: Thu, 24 Jan 2019 11:26:29 -0800 Subject: [PATCH 1/2] Minor API doc update --- FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs b/FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs index bdea0d95..841a4c91 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 + /// 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 /// 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) From 85ff411906e8db9d50143ce03bfaf513ecbac546 Mon Sep 17 00:00:00 2001 From: hiranya911 Date: Thu, 24 Jan 2019 12:42:56 -0800 Subject: [PATCH 2/2] Doc update --- FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs b/FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs index 841a4c91..f01e2b7d 100644 --- a/FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs +++ b/FirebaseAdmin/FirebaseAdmin/Auth/FirebaseAuth.cs @@ -241,7 +241,7 @@ 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 + /// 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