Skip to content

Commit c3672e7

Browse files
author
James Brundage
committed
Fixing documentation within VBN Transpiler
1 parent a90c9dc commit c3672e7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Transpilers/Parameters/VBN.psx.ps1

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
<#
22
.SYNOPSIS
3-
ValueFromPipline Shorthand
3+
ValueFromPiplineByPropertyName Shorthand
44
.DESCRIPTION
5-
This is syntax shorthand to create [Parameter] attributes that take ValueFromPipelineByPropertyName.
5+
This is syntax shorthand to create [Parameter] attributes that take ValueFromPipelineByPropertyName.
66
#>
77
[Alias('VFPBPN')]
88
param(
9+
# The name of the parameter set
910
[Alias('ParameterSetName')]
1011
[string]
1112
$ParameterSet,
1213

14+
# If set, the parameter will be Mandatory.
1315
[switch]
1416
$Mandatory,
1517

18+
# If set, the parameter will also take value from Pipeline
1619
[Alias('VFP')]
1720
[switch]
1821
$ValueFromPipeline,

0 commit comments

Comments
 (0)