Skip to content

Commit 6918e15

Browse files
committed
Final corrections to example files
1 parent 5b1f529 commit 6918e15

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

Examples/xOfflineDomainJoin/1-JoinDomainUsingODJBlob.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Configuration Example
1414

1515
Import-DscResource -ModuleName xComputerManagement
1616

17-
node $NodeName
17+
Node $NodeName
1818
{
1919
xOfflineDomainJoin ODJ
2020
{

Examples/xVirtualMemory/1-SetVirtualMemory.ps1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ Configuration Example
1818
{
1919
xVirtualMemory pagingSettings
2020
{
21-
Type = "CustomSize"
22-
Drive = "C"
23-
InitialSize = "2048"
24-
MaximumSize = "2048"
21+
Type = 'CustomSize'
22+
Drive = 'C'
23+
InitialSize = '2048'
24+
MaximumSize = '2048'
2525
}
2626
}
2727
}

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ configuration Example
442442
443443
Import-DscResource -ModuleName xComputerManagement
444444
445-
node $NodeName
445+
Node $NodeName
446446
{
447447
xOfflineDomainJoin ODJ
448448
{
@@ -507,10 +507,10 @@ Configuration Example
507507
{
508508
xVirtualMemory pagingSettings
509509
{
510-
Type = "CustomSize"
511-
Drive = "C"
512-
InitialSize = "2048"
513-
MaximumSize = "2048"
510+
Type = 'CustomSize'
511+
Drive = 'C'
512+
InitialSize = '2048'
513+
MaximumSize = '2048'
514514
}
515515
}
516516
}

0 commit comments

Comments
 (0)