From 2e4850a58341ff3440823ff85e33c85227d65fcd Mon Sep 17 00:00:00 2001 From: Kevin Gimbel Date: Sat, 29 Nov 2025 09:01:18 +0100 Subject: [PATCH] fix: add missing backtick which breaks formatting in docs (#1635) --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 2b2706e..6a9d8dc 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -629,7 +629,7 @@ pub struct WebViewAttributes<'a> { /// different Origin headers across platforms: /// /// - macOS, iOS and Linux: `://` (so it will be `wry://path/to/page/`). - /// - Windows and Android: `http://.` by default (so it will be `http://wry.path/to/page). To use `https` instead of `http`, use [`WebViewBuilderExtWindows::with_https_scheme`] and [`WebViewBuilderExtAndroid::with_https_scheme`]. + /// - Windows and Android: `http://.` by default (so it will be `http://wry.path/to/page`). To use `https` instead of `http`, use [`WebViewBuilderExtWindows::with_https_scheme`] and [`WebViewBuilderExtAndroid::with_https_scheme`]. /// /// # Reading assets on mobile ///