Skip to content

Commit 4fd2e0c

Browse files
authored
Fix up "Calculated Property" snippet (#4455)
It had an extra `#>` end marker.
1 parent 99fd944 commit 4fd2e0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

snippets/PowerShell.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"prefix": "calculated-property",
2626
"description": "Typically used with Select-Object or Sort-Object. More: Get-Help about_Calculated_Properties",
2727
"body": [
28-
"@{Name='${1:PropertyName}';Expression={${2:${TM_SELECTED_TEXT:<# Desired result. You can reference this object via \\$_ and \\$PSItem#>}}}}$0 #>"
28+
"@{Name='${1:PropertyName}';Expression={${2:${TM_SELECTED_TEXT:<# Desired result. You can reference this object via \\$_ and \\$PSItem #>}}}}$0"
2929
]
3030
},
3131
"Class": {

0 commit comments

Comments
 (0)