From 6cb5f5a1eb68c3013a2d62392b4289c70b2ce668 Mon Sep 17 00:00:00 2001 From: Marco Pelloni Date: Wed, 4 Jan 2023 05:52:29 -0800 Subject: [PATCH] docs: update incorrect grammar (#36780) #### Description of Change The first sentence within the documentation "[Important: signing your code](https://www.electronjs.org/docs/latest/tutorial/tutorial-packaging#important-signing-your-code)" is grammatically incorrect. > In order to distribute desktop applications to end users, we highly recommended for you to code sign your Electron app. I've adjusted the copy to switch "highly recommended" to "highly recommend". I've also switched out "for you to code sign" for "that you code sign" for clarity. > In order to distribute desktop applications to end users, we _highly recommend_ that you **code sign** your Electron app. --- docs/tutorial/tutorial-5-packaging.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/tutorial/tutorial-5-packaging.md b/docs/tutorial/tutorial-5-packaging.md index d803035675c9..b917bbe58da1 100644 --- a/docs/tutorial/tutorial-5-packaging.md +++ b/docs/tutorial/tutorial-5-packaging.md @@ -127,8 +127,7 @@ documentation. ## Important: signing your code -In order to distribute desktop applications to end users, we _highly recommended_ for you -to **code sign** your Electron app. Code signing is an important part of shipping +In order to distribute desktop applications to end users, we _highly recommend_ that you **code sign** your Electron app. Code signing is an important part of shipping desktop applications, and is mandatory for the auto-update step in the final part of the tutorial.