From bd51cddd6f99a7824adf241e11db3f19a011c36d Mon Sep 17 00:00:00 2001 From: Akirami <66513481+A-kirami@users.noreply.github.com> Date: Fri, 26 Aug 2022 20:23:59 +0800 Subject: [PATCH] docs(updater): fix server missing required key (#5050) --- core/tauri/src/updater/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/tauri/src/updater/mod.rs b/core/tauri/src/updater/mod.rs index 5bbe3eaca17f..4b50fe17c9ac 100644 --- a/core/tauri/src/updater/mod.rs +++ b/core/tauri/src/updater/mod.rs @@ -308,7 +308,7 @@ //! } //! ``` //! -//! The only required keys are "url" and "version", the others are optional. +//! The required keys are "url", "version" and "signature"; the others are optional. //! //! "pub_date" if present must be formatted according to ISO 8601. //!