fix: add missing backtick which breaks formatting in docs (#1635)

This commit is contained in:
Kevin Gimbel
2025-11-29 09:01:18 +01:00
committed by GitHub
parent 5fdd1a9840
commit 2e4850a583

View File

@@ -629,7 +629,7 @@ pub struct WebViewAttributes<'a> {
/// different Origin headers across platforms:
///
/// - macOS, iOS and Linux: `<scheme_name>://<path>` (so it will be `wry://path/to/page/`).
/// - Windows and Android: `http://<scheme_name>.<path>` 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://<scheme_name>.<path>` 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
///