Skip to content

Commit bf3e384

Browse files
fix: correct malformed comment block and indentation in examples/General.ps1
The file had a stray '<' and an embedded BOM character before the '<#' comment opener, making it non-ASCII and triggering PSUseBOMForUnicodeEncodedFile. Indentation was also 2-space instead of the required 4-space. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
1 parent c76df31 commit bf3e384

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

examples/General.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<<#
2-
.SYNOPSIS
3-
Basic module usage example.
1+
<#
2+
.SYNOPSIS
3+
Basic module usage example.
44
#>
55

66
Import-Module -Name '{{ NAME }}'

0 commit comments

Comments
 (0)