From e6b1751767fcd27a0f14394d2f2a8ff30063abaf Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Mon, 7 Aug 2023 22:45:42 +0200 Subject: [PATCH] Fix web name Co-authored-by: daxpedda --- src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.rs b/src/window.rs index 9d8c45e3a2..fe6b8868ea 100644 --- a/src/window.rs +++ b/src/window.rs @@ -26,7 +26,7 @@ pub use cursor_icon::{CursorIcon, ParseError as CursorIconParseError}; /// This is `Send + Sync`, meaning that it can be freely used from other /// threads. /// -/// However, some platforms (macOS, web and iOS) only allow user interface +/// However, some platforms (macOS, Web and iOS) only allow user interface /// interactions on the main thread, so on those platforms, if you use the /// window from a thread other than the main, the code is scheduled to run on /// the main thread, and your thread may be blocked until that completes.