From 2852af4e64ae98025e16b693e00ed421c50c923a Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Sun, 27 Dec 2020 11:20:36 +0100 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 33ca753f..b5799496 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ Each PowerShell script should follow the 8 golden rules: * **Rule #4:** provide a metadata header with syntax, description, author, source, and license * **Rule #5:** prefer command-line options, else ask the user * **Rule #6:** the encoding of the script is in UTF-8 with BOM to support Unicode characters -* **Rule #7:** use 'Set-StrictMode -Version Latest' to enable additional error checking +* **Rule #7:** use `Set-StrictMode -Version Latest` to enable additional error checking * **Rule #8:** exits 0 for success, else print an error message and exit with the error code (mostly 1) Feedback