diff --git a/doc/devdocs/settingsv2/xaml-island-tweaks.md b/doc/devdocs/settingsv2/xaml-island-tweaks.md index e0b134b4f3..e63c879302 100644 --- a/doc/devdocs/settingsv2/xaml-island-tweaks.md +++ b/doc/devdocs/settingsv2/xaml-island-tweaks.md @@ -22,9 +22,9 @@ Interop.ShowWindow(coreWindowInterop.WindowHandle, Interop.SW_HIDE); ``` 3. Workaround to prevent XAML Island failing to render on Nvidia workstation graphics cards: ``` - // XAML Islands: If the window is open, explicity force it to be shown to solve the blank dialog issue https://github.com/microsoft/PowerToys/issues/3384 + // XAML Islands: If the window is open, explicitly force it to be shown to solve the blank dialog issue https://github.com/microsoft/PowerToys/issues/3384 if (isOpen) { Show(); } - ``` \ No newline at end of file + ```