From 770051ae6319f329a43a9bd35e84269cf515f8f1 Mon Sep 17 00:00:00 2001 From: Anil Kumar <155140399+akts-elite@users.noreply.github.com> Date: Mon, 19 Feb 2024 19:22:08 +0530 Subject: [PATCH] docs: fixed a spelling mistake (#8899) Fixed a spelling mistake --- core/tauri/src/window/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/tauri/src/window/mod.rs b/core/tauri/src/window/mod.rs index 60855a158..60c3813db 100644 --- a/core/tauri/src/window/mod.rs +++ b/core/tauri/src/window/mod.rs @@ -651,7 +651,7 @@ impl<'a, R: Runtime, M: Manager> WindowBuilder<'a, R, M> { /// /// - **Windows:** /// - `false` has no effect on decorated window, shadows are always ON. - /// - `true` will make ndecorated window have a 1px white border, + /// - `true` will make undecorated window have a 1px white border, /// and on Windows 11, it will have a rounded corners. /// - **Linux:** Unsupported. #[must_use] @@ -1657,7 +1657,7 @@ impl Window { /// /// - **Windows:** /// - `false` has no effect on decorated window, shadow are always ON. - /// - `true` will make ndecorated window have a 1px white border, + /// - `true` will make undecorated window have a 1px white border, /// and on Windows 11, it will have a rounded corners. /// - **Linux:** Unsupported. pub fn set_shadow(&self, enable: bool) -> crate::Result<()> {