diff --git a/Xamarin.Forms.Platform.UAP/MasterDetailPageRenderer.cs b/Xamarin.Forms.Platform.UAP/MasterDetailPageRenderer.cs index 8e3bfe8c8..f38cd6ba6 100644 --- a/Xamarin.Forms.Platform.UAP/MasterDetailPageRenderer.cs +++ b/Xamarin.Forms.Platform.UAP/MasterDetailPageRenderer.cs @@ -320,7 +320,7 @@ namespace Xamarin.Forms.Platform.UWP IVisualElementRenderer renderer = _detail.GetOrCreateRenderer(); element = renderer.ContainerElement; - UpdateToolbarVisibilty(); + UpdateToolbarVisibility(); } Control.Detail = element; @@ -388,7 +388,7 @@ namespace Xamarin.Forms.Platform.UWP Control.Master = element; Control.MasterTitle = _master?.Title; - UpdateToolbarVisibilty(); + UpdateToolbarVisibility(); } void UpdateMode() @@ -411,7 +411,7 @@ namespace Xamarin.Forms.Platform.UWP Control.ToolbarDynamicOverflowEnabled = Element.OnThisPlatform().GetToolbarDynamicOverflowEnabled(); } - void UpdateToolbarVisibilty() + void UpdateToolbarVisibility() { // Enforce consistency rules on toolbar Control.ShouldShowToolbar = _detail is NavigationPage || _master is NavigationPage;