@@ -24,22 +24,22 @@ public static class WebAssemblyRazorComponentsBuilderExtensions
2424 /// <param name="builder">The <see cref="IRazorComponentsBuilder"/>.</param>
2525 /// <returns>An <see cref="IRazorComponentsBuilder"/> that can be used to further customize the configuration.</returns>
2626 public static IRazorComponentsBuilder AddInteractiveWebAssemblyComponents ( this IRazorComponentsBuilder builder )
27- => AddInteractiveWebAssemblyComponents ( builder , pesistCultureFromServer : true ) ;
27+ => AddInteractiveWebAssemblyComponents ( builder , persistCultureFromServer : true ) ;
2828
2929 /// <summary>
3030 /// Adds services to support rendering interactive WebAssembly components.
3131 /// </summary>
3232 /// <param name="builder">The <see cref="IRazorComponentsBuilder"/>.</param>
33- /// <param name="pesistCultureFromServer ">If set to <c>true</c>, the culture from the server is persisted and restored on the client.</param>
33+ /// <param name="persistCultureFromServer ">If set to <c>true</c>, the culture from the server is persisted and restored on the client.</param>
3434 /// <returns>An <see cref="IRazorComponentsBuilder"/> that can be used to further customize the configuration.</returns>
35- public static IRazorComponentsBuilder AddInteractiveWebAssemblyComponents ( this IRazorComponentsBuilder builder , bool pesistCultureFromServer )
35+ public static IRazorComponentsBuilder AddInteractiveWebAssemblyComponents ( this IRazorComponentsBuilder builder , bool persistCultureFromServer )
3636 {
3737 ArgumentNullException . ThrowIfNull ( builder , nameof ( builder ) ) ;
3838
3939 builder . Services . TryAddEnumerable ( ServiceDescriptor . Singleton < RenderModeEndpointProvider , WebAssemblyEndpointProvider > ( ) ) ;
4040 builder . Services . TryAddScoped < LazyAssemblyLoader > ( ) ;
4141
42- if ( pesistCultureFromServer )
42+ if ( persistCultureFromServer )
4343 {
4444 builder . Services . TryAddScoped ( _ =>
4545 {
0 commit comments