From f15908e3d4527828d342fbfefe0fc10c7d61ad1a Mon Sep 17 00:00:00 2001 From: Charles Bihis Date: Thu, 30 Nov 2017 12:16:10 -0800 Subject: [PATCH] Actually call the configuration in the example On line 74, it says... "The last line of the example containing only the name of the configuration, calls the configuration." This change actually makes that call. --- dsc/configurations.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dsc/configurations.md b/dsc/configurations.md index e6bc1148b6a2..fd8a6ef94543 100644 --- a/dsc/configurations.md +++ b/dsc/configurations.md @@ -26,7 +26,8 @@ Configuration MyDscConfiguration { Name = "Bitlocker" } } -} +} +MyDscConfiguration ``` @@ -60,6 +61,7 @@ Configuration MyDscConfiguration { } } } +MyDscConfiguration ```