Skip to content

Commit 718f8e2

Browse files
authored
Merge pull request #4743 from MicrosoftDocs/staging
Merge latest updates to live
2 parents 02eed65 + eba22ce commit 718f8e2

File tree

30 files changed

+2161
-1375
lines changed

30 files changed

+2161
-1375
lines changed

dsc/configurations/add-parameters-to-a-configuration.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This example starts with a basic Configuration that configures the "Spooler" ser
1313
```powershell
1414
Configuration TestConfig
1515
{
16-
# It is best practice to implicitly import any required resources or modules.
16+
# It is best practice to explicitly import any required resources or modules.
1717
Import-DSCResource -Module PSDesiredStateConfiguration
1818
1919
Node localhost
@@ -94,7 +94,7 @@ Configuration TestConfig
9494
$ComputerName="localhost"
9595
)
9696
97-
# It is best practice to implicitly import any required resources or modules.
97+
# It is best practice to explicitly import any required resources or modules.
9898
Import-DSCResource -Module PSDesiredStateConfiguration
9999
100100
Node $ComputerName
@@ -129,7 +129,7 @@ Configuration TestConfig
129129
$ComputerName="localhost"
130130
)
131131
132-
# It is best practice to implicitly import any required resources or modules.
132+
# It is best practice to explicitly import any required resources or modules.
133133
Import-DSCResource -Module PSDesiredStateConfiguration
134134
135135
Node $ComputerName
@@ -206,7 +206,7 @@ Configuration TestConfig
206206
$ComputerName="localhost",
207207
)
208208
209-
# It is best practice to implicitly import any required resources or modules.
209+
# It is best practice to explicitly import any required resources or modules.
210210
Import-DSCResource -Module PSDesiredStateConfiguration
211211
212212
Node localhost

0 commit comments

Comments
 (0)