Skip to content

Commit 0a61107

Browse files
authored
Merge pull request PowerShell#502 from pcgeek86/patch-2
Fixed missing quote, clarified comment
2 parents 9eead58 + 7b49ac9 commit 0a61107

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

snippets/PowerShell.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@
33
"prefix": "manifest",
44
"body": [
55
"@{",
6-
"\t# If authoring a script module, the RootModule is your .psm1 file",
6+
"\t# If authoring a script module, the RootModule is the name of your .psm1 file",
77
"\tRootModule = '${module:MyModule}.psm1'",
88
"",
9-
"\tAuthor = '${author:Cool Person <[email protected]>}",
9+
"\tAuthor = '${author:Cool Person <[email protected]>}'",
1010
"",
1111
"\tCompanyName = '${company:Contoso Inc.}'",
1212
"",
1313
"\tModuleVersion = '${ModuleVersion:0.1}'",
1414
"",
15+
"\t# Use the New-Guid command to generate a GUID, and copy/paste into the next line"
1516
"\tGUID = '<pasteNewGUIDhere>'",
1617
"",
1718
"\tCopyright = '2017 ${company:Copyright Holder}'",

0 commit comments

Comments
 (0)