From 5e8aa6f9462b61a6336497ab72cc8fedb98fab42 Mon Sep 17 00:00:00 2001 From: Simon Hyll Date: Wed, 29 May 2024 17:16:29 +0200 Subject: [PATCH] fix: workaround for broken example (#9906) `schemars` improperly parses the docstring, causing a missing newline before the codeblock closing tics. --- core/tauri-utils/src/config.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core/tauri-utils/src/config.rs b/core/tauri-utils/src/config.rs index d0ddca3d6..e7a69b23e 100644 --- a/core/tauri-utils/src/config.rs +++ b/core/tauri-utils/src/config.rs @@ -763,6 +763,7 @@ pub struct NsisConfig { /// !macro NSIS_HOOK_POSTUNINSTALL_ /// MessageBox MB_OK "PostUninstall" /// !macroend + /// /// ``` #[serde(alias = "installer-hooks")] pub installer_hooks: Option,