Skip to content

Commit ac405fb

Browse files
committed
Bringing even with staging.
2 parents e97859d + c83712a commit ac405fb

File tree

22 files changed

+92
-74
lines changed

22 files changed

+92
-74
lines changed

dsc/registryResource.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Registry [string] #ResourceName
1818
{
1919
Key = [string]
2020
ValueName = [string]
21-
[ Ensure = [string] { Enable | Disable } ]
21+
[ Ensure = [string] { Present | Absent } ]
2222
[ Force = [bool] ]
2323
[ Hex = [bool] ]
2424
[ DependsOn = [string[]] ]
@@ -71,4 +71,4 @@ Configuration RegistryTest
7171
```
7272

7373
>**Note:** Changing a registry setting in the **HKEY\_CURRENT\_USER** hive requires that the configuration runs with user credentials, rather than as the system.
74-
>You can use the **PsDscRunAsCredential** property to specify user credentials for the configuration. For an example, see [Running DSC with user credentials](runAsUser.md)
74+
>You can use the **PsDscRunAsCredential** property to specify user credentials for the configuration. For an example, see [Running DSC with user credentials](runAsUser.md)

reference/3.0/Microsoft.PowerShell.Core/About/about_Comment_Based_Help.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ or
124124

125125
```powershell
126126
<#
127-
.< help keyword>
128-
< help content>
127+
.<help keyword>
128+
<help content>
129129
#>
130130
function Get-Function { }
131131
```
@@ -138,7 +138,7 @@ locations in the script.
138138
- At the beginning of the script file. Script help can be preceded in the
139139
script only by comments and blank lines.
140140

141-
- If the first item in the script body (after the help) is a function
141+
If the first item in the script body (after the help) is a function
142142
declaration, there must be at least two blank lines between the end of the
143143
script help and the function declaration. Otherwise, the help is interpreted
144144
as being help for the function, not help for the script.
@@ -155,6 +155,7 @@ For example:
155155
<help content>
156156
#>
157157
158+
158159
function Get-Function { }
159160
```
160161

@@ -164,8 +165,8 @@ or
164165
function Get-Function { }
165166
166167
<#
167-
.< help keyword>
168-
< help content>
168+
.<help keyword>
169+
<help content>
169170
#>
170171
```
171172

@@ -180,11 +181,10 @@ XML-based help files for the functions in a script module, you must add an
180181
"ExternalHelp" comment to each function.
181182

182183
```powershell
183-
.ExternalHelp <XML-file-name>
184+
# .ExternalHelp <XML-file-name>
184185
function <function-name>
185186
{
186-
# ...
187-
187+
...
188188
}
189189
```
190190

reference/3.0/Microsoft.PowerShell.Core/Receive-Job.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -337,6 +337,8 @@ If the job has more results, the job is still deleted, but **Receive-Job** displ
337337
This parameter works only on custom job types.
338338
It is designed for instances of job types that save the job or the type outside of the session, such as instances of scheduled jobs.
339339
340+
This parameter cannot be used without the **Wait** parameter.
341+
340342
This parameter is introduced in Windows PowerShell 3.0.
341343
342344
```yaml

reference/3.0/Microsoft.PowerShell.Utility/Set-Variable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ Accept wildcard characters: False
213213
Determines the scope of the variable.
214214
Valid values are "Global", "Local", or "Script", or a number relative to the current scope (0 through the number of scopes, where 0 is the current scope and 1 is its parent).
215215
"Local" is the default.
216-
For more information, see about_Scopes.
216+
For more information, see [about_Scopes](../Microsoft.PowerShell.Core/About/about_scopes.md).
217217
218218
```yaml
219219
Type: String
@@ -319,4 +319,4 @@ Otherwise, this cmdlet does not generate any output.
319319
320320
[New-Variable](New-Variable.md)
321321
322-
[Remove-Variable](Remove-Variable.md)
322+
[Remove-Variable](Remove-Variable.md)

reference/4.0/Microsoft.PowerShell.Core/About/about_Comment_Based_Help.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ or
124124

125125
```powershell
126126
<#
127-
.< help keyword>
128-
< help content>
127+
.<help keyword>
128+
<help content>
129129
#>
130130
function Get-Function { }
131131
```
@@ -138,7 +138,7 @@ locations in the script.
138138
- At the beginning of the script file. Script help can be preceded in the
139139
script only by comments and blank lines.
140140

141-
- If the first item in the script body (after the help) is a function
141+
If the first item in the script body (after the help) is a function
142142
declaration, there must be at least two blank lines between the end of the
143143
script help and the function declaration. Otherwise, the help is interpreted
144144
as being help for the function, not help for the script.
@@ -155,6 +155,7 @@ For example:
155155
<help content>
156156
#>
157157
158+
158159
function Get-Function { }
159160
```
160161

@@ -164,8 +165,8 @@ or
164165
function Get-Function { }
165166
166167
<#
167-
.< help keyword>
168-
< help content>
168+
.<help keyword>
169+
<help content>
169170
#>
170171
```
171172

@@ -180,11 +181,10 @@ XML-based help files for the functions in a script module, you must add an
180181
"ExternalHelp" comment to each function.
181182

182183
```powershell
183-
.ExternalHelp <XML-file-name>
184+
# .ExternalHelp <XML-file-name>
184185
function <function-name>
185186
{
186-
# ...
187-
187+
...
188188
}
189189
```
190190

reference/4.0/Microsoft.PowerShell.Core/Receive-Job.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ If the job has more results, the job is still deleted, but **Receive-Job** displ
159159
This parameter works only on custom job types.
160160
It is designed for instances of job types that save the job or the type outside of the session, such as instances of scheduled jobs.
161161

162+
This parameter cannot be used without the **Wait** parameter.
163+
162164
This parameter is introduced in Windows PowerShell 3.0.
163165

164166
```yaml

reference/4.0/Microsoft.PowerShell.Utility/Set-Variable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ Accept wildcard characters: False
219219
Determines the scope of the variable.
220220
Valid values are "Global", "Local", or "Script", or a number relative to the current scope (0 through the number of scopes, where 0 is the current scope and 1 is its parent).
221221
"Local" is the default.
222-
For more information, see about_Scopes.
222+
For more information, see [about_Scopes](../Microsoft.PowerShell.Core/About/about_scopes.md).
223223
224224
```yaml
225225
Type: String
@@ -328,4 +328,4 @@ Otherwise, this cmdlet does not generate any output.
328328
329329
[New-Variable](New-Variable.md)
330330
331-
[Remove-Variable](Remove-Variable.md)
331+
[Remove-Variable](Remove-Variable.md)

reference/5.0/Microsoft.PowerShell.Core/About/about_Comment_Based_Help.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ or
124124

125125
```powershell
126126
<#
127-
.< help keyword>
128-
< help content>
127+
.<help keyword>
128+
<help content>
129129
#>
130130
function Get-Function { }
131131
```
@@ -138,7 +138,7 @@ locations in the script.
138138
- At the beginning of the script file. Script help can be preceded in the
139139
script only by comments and blank lines.
140140

141-
- If the first item in the script body (after the help) is a function
141+
If the first item in the script body (after the help) is a function
142142
declaration, there must be at least two blank lines between the end of the
143143
script help and the function declaration. Otherwise, the help is interpreted
144144
as being help for the function, not help for the script.
@@ -155,6 +155,7 @@ For example:
155155
<help content>
156156
#>
157157
158+
158159
function Get-Function { }
159160
```
160161

@@ -164,8 +165,8 @@ or
164165
function Get-Function { }
165166
166167
<#
167-
.< help keyword>
168-
< help content>
168+
.<help keyword>
169+
<help content>
169170
#>
170171
```
171172

@@ -180,11 +181,10 @@ XML-based help files for the functions in a script module, you must add an
180181
"ExternalHelp" comment to each function.
181182

182183
```powershell
183-
.ExternalHelp <XML-file-name>
184+
# .ExternalHelp <XML-file-name>
184185
function <function-name>
185186
{
186-
# ...
187-
187+
...
188188
}
189189
```
190190

reference/5.0/Microsoft.PowerShell.Core/Receive-Job.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,8 @@ If the job has more results, the job is still deleted, but **Receive-Job** displ
158158
This parameter works only on custom job types.
159159
It is designed for instances of job types that save the job or the type outside of the session, such as instances of scheduled jobs.
160160

161+
This parameter cannot be used without the **Wait** parameter.
162+
161163
This parameter was introduced in Windows PowerShell 3.0.
162164

163165
```yaml

reference/5.0/Microsoft.PowerShell.Utility/Set-Variable.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ The acceptable values for this parameter are:
243243

244244
Local is the default.
245245

246-
For more information, see about_Scopes.
246+
For more information, see [about_Scopes](../Microsoft.PowerShell.Core/About/about_scopes.md).
247247

248248
```yaml
249249
Type: String
@@ -340,4 +340,4 @@ Otherwise, this cmdlet does not generate any output.
340340

341341
[New-Variable](New-Variable.md)
342342

343-
[Remove-Variable](Remove-Variable.md)
343+
[Remove-Variable](Remove-Variable.md)

0 commit comments

Comments
 (0)