Skip to content

Commit 846ad45

Browse files
(fixup)
1 parent a12b745 commit 846ad45

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

dsc/docs-conceptual/dsc-3.0/getting-started/getting-started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Count Name
108108
```
109109

110110
The first command saves the output of `dsc resource list` to the `$resources` variable as an array
111-
of PowerShell objects. WHen you first ran the `dsc resource list` command, the output in the
111+
of PowerShell objects. When you first ran the `dsc resource list` command, the output in the
112112
terminal was a table view. By default, when DSC detects that its output is being redirected to a
113113
file, variable, or another command in the pipeline, it emits JSON representing the output.
114114
Converting the JSON into a PowerShell object with the `ConvertFrom-Json` cmdlet enables you to
@@ -164,7 +164,7 @@ For more information about the command, see [dsc resource list][03].
164164

165165
## Invoke a resource
166166

167-
You can use DSC to directly invoke a resource. When you invoke a resource, you are performing a
167+
You can use DSC to directly invoke a resource. When you invoke a resource, you're performing a
168168
specific operation on an _instance_ of the resource. A resource instance is a specific item the
169169
resource represents. The following examples use the `Microsoft.Windows/Registry` resource to invoke
170170
DSC operations.
@@ -212,8 +212,8 @@ For this example:
212212
want to manage. `keyPath` is a _required_ property for the `Registry` resource - you always need
213213
to specify it.
214214
- The `valueName` property identifies which registry value to manage for the registry key.
215-
- The `_exist` canonical property indicates whether the registry value should exist. In this example,
216-
it's set to `true`, indicating the instance should exist.
215+
- The `_exist` canonical property indicates whether the registry value should exist. In this
216+
example, it's set to `true`, indicating the instance should exist.
217217

218218
Run the following command to get the current state of the registry key:
219219

@@ -300,7 +300,7 @@ The output indicates that the resource created the missing instance.
300300
Invoking resources directly is useful, but tedious for defining the desired state of a system. You
301301
can define a DSC configuration document to describe a set of resource instances together.
302302

303-
Copy the following codeblock and save it in a file named `example.dsc.config.yaml`.
303+
Copy the following code block and save it in a file named `example.dsc.config.yaml`.
304304

305305
```yaml
306306
$schema: https://aka.ms/dsc/schemas/v3/bundled/config/document.json

dsc/docs-conceptual/dsc-3.0/toc.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
items:
22
- name: Microsoft DSC 3.0
33
href: overview.md
4-
- name: Glossary
5-
href: glossary.md
64
- name: Changelog
75
href: changelog.md
86
- name: Getting started
@@ -25,7 +23,7 @@ items:
2523
href: concepts/resources/operations.md
2624
- name: Resource properties
2725
href: concepts/resources/properties.md
28-
- name: Resourc capabilities
26+
- name: Resource capabilities
2927
href: concepts/resources/capabilities.md
3028
- name: Resource kinds
3129
href: concepts/resources/kinds.md
@@ -47,9 +45,9 @@ items:
4745
href: tutorials/resources/authoring/first-resource/overview.md
4846
- name: In Go
4947
href: https://powershell.github.io/DSC-Samples/tutorials/first-resource/go/
50-
- name: Reference
48+
- name: DSC reference
5149
items:
52-
- name: dsc commandline
50+
- name: dsc CLI
5351
items:
5452
- name: dsc
5553
href: reference/cli/index.md
@@ -179,7 +177,7 @@ items:
179177
href: reference/schemas/resource/manifest/schema/property.md
180178
- name: Embedded schemas
181179
href: reference/schemas/resource/manifest/schema/embedded.md
182-
- name: Well-known properties
180+
- name: Canonical resource properties
183181
items:
184182
- name: Overview
185183
href: reference/schemas/resource/properties/overview.md
@@ -266,4 +264,6 @@ items:
266264
- name: registry config delete
267265
href: reference/tools/registry/config/delete.md
268266
- name: registry schema
269-
href: reference/tools/registry/schema/index.md
267+
href: reference/tools/registry/schema/index.md
268+
- name: Glossary
269+
href: glossary.md

0 commit comments

Comments
 (0)