@@ -186,7 +186,7 @@ private static IGenocsBuilder AddJwt(this IGenocsBuilder builder, JwtOptions opt
186186 /// </summary>
187187 /// <param name="builder">The Genocs builder.</param>
188188 /// <param name="sectionName">The configuration section name.</param>
189- /// <returns>The Genocs builder you can use for chain.</returns>
189+ /// <returns>The Genocs builder. You can use it for chain commands .</returns>
190190 public static IGenocsBuilder AddOpenIdJwt ( this IGenocsBuilder builder , string sectionName = JwtOptions . Position )
191191 {
192192 if ( string . IsNullOrWhiteSpace ( sectionName ) )
@@ -223,7 +223,7 @@ public static IGenocsBuilder AddOpenIdJwt(this IGenocsBuilder builder, string se
223223 /// </summary>
224224 /// <param name="builder">The Genocs builder.</param>
225225 /// <param name="sectionName">The optional section name. Default name: 'jwt'.</param>
226- /// <returns>The Genocs builder you can use for chaining .</returns>
226+ /// <returns>The Genocs builder. You can use it for chain commands .</returns>
227227 /// <exception cref="InvalidOperationException">Whenever mandatory data like 'IssuerSigningKey' is missing.</exception>
228228 public static IGenocsBuilder AddPrivateKeyJwt ( this IGenocsBuilder builder , string sectionName = JwtOptions . Position )
229229 {
@@ -269,7 +269,7 @@ public static IGenocsBuilder AddPrivateKeyJwt(this IGenocsBuilder builder, strin
269269 /// This middleware validates the access token in real-time.
270270 /// </summary>
271271 /// <param name="app">The app builder.</param>
272- /// <returns>The app builder you can use for chaining .</returns>
272+ /// <returns>The app builder. You can use it for chain commands .</returns>
273273 public static IApplicationBuilder UseAccessTokenValidator ( this IApplicationBuilder app )
274274 => app . UseMiddleware < AccessTokenValidatorMiddleware > ( ) ;
275275}
0 commit comments