Skip to content

Commit ca690e5

Browse files
StartAutomatingStartAutomating
authored andcommitted
Join-PipeScript: Improving Unnamed end block behavior (Fixes #363)
1 parent 91ab741 commit ca690e5

File tree

1 file changed

+31
-7
lines changed

1 file changed

+31
-7
lines changed

docs/Until.md

Lines changed: 31 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,28 @@
11
Until
22
-----
3+
4+
5+
6+
37
### Synopsis
48
until keyword
59

10+
11+
612
---
13+
14+
715
### Description
816

917
The until keyword simplifies event loops.
1018

1119
until will always run at least once, and will run until a condition is true.
1220

21+
22+
1323
---
24+
25+
1426
### Examples
1527
#### EXAMPLE 1
1628
```PowerShell
@@ -72,26 +84,38 @@ Invoke-PipeScript {
7284
}
7385
```
7486

87+
88+
7589
---
90+
91+
7692
### Parameters
7793
#### **CommandAst**
7894

79-
> **Type**: ```[CommandAst]```
8095

81-
> **Required**: true
8296

83-
> **Position**: named
8497

85-
> **PipelineInput**:true (ByValue)
98+
|Type |Required|Position|PipelineInput |
99+
|--------------|--------|--------|--------------|
100+
|`[CommandAst]`|true |named |true (ByValue)|
101+
102+
86103

87104

88105

89106
---
107+
108+
109+
### Notes
110+
until will become a ```do {} while ()``` statement in PowerShell.
111+
112+
113+
114+
---
115+
116+
90117
### Syntax
91118
```PowerShell
92119
Until -CommandAst <CommandAst> [<CommonParameters>]
93120
```
94-
---
95-
### Notes
96-
until will become a ```do {} while ()``` statement in PowerShell.
97121

0 commit comments

Comments
 (0)