@@ -11,27 +11,27 @@ public static class ApiVersionWriter
1111 /// Returns a new API version writer that is a combination of the specified set.
1212 /// </summary>
1313 /// <param name="apiVersionWriter">The primary <see cref="IApiVersionWriter">API version writer</see>.</param>
14- /// <param name="otherApiVersionwriters ">An array of the other
14+ /// <param name="otherApiVersionWriters ">An array of the other
1515 /// <see cref="IApiVersionWriter">API version writers</see> to combine.</param>
1616 /// <returns>A new, combined <see cref="IApiVersionWriter">API version writer</see>.</returns>
1717 public static IApiVersionWriter Combine (
1818 IApiVersionWriter apiVersionWriter ,
19- params IApiVersionWriter [ ] otherApiVersionwriters )
19+ params IApiVersionWriter [ ] otherApiVersionWriters )
2020 {
2121 ArgumentNullException . ThrowIfNull ( apiVersionWriter ) ;
2222
2323 int count ;
2424 IApiVersionWriter [ ] apiVersionWriters ;
2525
26- if ( otherApiVersionwriters is null || ( count = otherApiVersionwriters . Length ) == 0 )
26+ if ( otherApiVersionWriters is null || ( count = otherApiVersionWriters . Length ) == 0 )
2727 {
28- apiVersionWriters = new [ ] { apiVersionWriter } ;
28+ apiVersionWriters = [ apiVersionWriter ] ;
2929 }
3030 else
3131 {
3232 apiVersionWriters = new IApiVersionWriter [ count + 1 ] ;
3333 apiVersionWriters [ 0 ] = apiVersionWriter ;
34- System . Array . Copy ( otherApiVersionwriters , 0 , apiVersionWriters , 1 , count ) ;
34+ System . Array . Copy ( otherApiVersionWriters , 0 , apiVersionWriters , 1 , count ) ;
3535 }
3636
3737 return new CombinedApiVersionWriter ( apiVersionWriters ) ;
0 commit comments