From 7b49ac9b0f766bf97612712fd17f19b85335c8ac Mon Sep 17 00:00:00 2001 From: Trevor Sullivan Date: Sat, 11 Feb 2017 13:40:49 -0700 Subject: [PATCH] Fixed missing quote, clarified comment --- snippets/PowerShell.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/snippets/PowerShell.json b/snippets/PowerShell.json index d60c4cf500..505b361c33 100644 --- a/snippets/PowerShell.json +++ b/snippets/PowerShell.json @@ -3,15 +3,16 @@ "prefix": "manifest", "body": [ "@{", - "\t# If authoring a script module, the RootModule is your .psm1 file", + "\t# If authoring a script module, the RootModule is the name of your .psm1 file", "\tRootModule = '${module:MyModule}.psm1'", "", - "\tAuthor = '${author:Cool Person }", + "\tAuthor = '${author:Cool Person }'", "", "\tCompanyName = '${company:Contoso Inc.}'", "", "\tModuleVersion = '${ModuleVersion:0.1}'", "", + "\t# Use the New-Guid command to generate a GUID, and copy/paste into the next line" "\tGUID = ''", "", "\tCopyright = '2017 ${company:Copyright Holder}'",