Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
codyduong committed Mar 28, 2024
1 parent 942df29 commit f5fe7a3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
17 changes: 16 additions & 1 deletion docs/en-US/Find-Alias.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ schema: 2.0.0
## SYNTAX

```
Find-Alias [-Line] <String> [<CommonParameters>]
Find-Alias [-Line] <String> [-ProgressAction <ActionPreference>] [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -45,6 +45,21 @@ Accept pipeline input: False
Accept wildcard characters: False
```
### -ProgressAction
{{ Fill ProgressAction Description }}
```yaml
Type: ActionPreference
Parameter Sets: (All)
Aliases: proga

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```
### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/Format-Command.tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ InModuleScope 'alias-tips' {
Format-Command " git checkout -b`n`"foo bar`" " | Should -Be "git checkout -b `"foo bar`""
}

it 'Should not modify '' strings' {
it "Should not modify '' strings" {
Format-Command " git checkout -b`n'foo bar' " | Should -Be "git checkout -b 'foo bar'"
}
}
Expand Down

0 comments on commit f5fe7a3

Please sign in to comment.