Skip to content

Commit 2b97533

Browse files
committed
fix: multiple typos in README.md
1 parent 01e59c1 commit 2b97533

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,16 @@ The better a Pull Request description is, the better a review can understand and
6060

6161
[Writing A Great Pull Request Description](https://www.pullrequest.com/blog/writing-a-great-pull-request-description/)
6262

63-
Versioning is a crucial part for everything as code. Without version tags you cannot clearly create a stable environment and be sure that your latest changes won't crash your production environment (sure it still can happen, but we are trying our best to implement everything that we can to reduce the risk)
63+
Versioning is a crucial part of everything as code. Without version tags, you cannot clearly create a stable environment
64+
and be sure that your latest changes will not crash your production environment (sure it still can happen, but we are trying our best to implement everything that we can to reduce the risk).
6465

6566
[Semantic Versioning](https://semver.org)
6667

6768
---
6869

6970
## Share the Love
70-
Like this project? Please give it a ★ on [our GitHub](https://github.com/xoap-io/xoap-uberagent-kibana-dashboards)! (it helps us a lot).
71+
Like this project? Please give it a ★ on [our GitHub](https://github.com/xoap-io/xoap-powershell-dsc-configurations)!
72+
It helps us a lot.
7173

7274
---
7375

@@ -97,7 +99,8 @@ PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
9799

98100
### Local usage
99101

100-
On most supported Windows versions you don´t have to do anything. On windows versions prior to Windows Server 2016 or Windows 10 you should install Windows Management Framework 5.1.
102+
On most supported Windows versions, you do not have to do anything.
103+
On windows versions prior to Windows Server 2016 or Windows 10, you should install Windows Management Framework 5.1.
101104
You can download it [here](https://www.microsoft.com/en-us/download/details.aspx?id=54616).
102105

103106
#### Compile and Apply
@@ -126,7 +129,7 @@ Configuration MSTF_SecurityBaseline_Edge_v107_Computer
126129
}
127130
```
128131

129-
In order to compile this example you need to take care that all the referenced DSC modules are available locally.
132+
In order to compile this example, you need to take care that all the referenced DSC modules are available locally.
130133

131134
You can check availability with:
132135

@@ -140,9 +143,11 @@ If DSC modules are missing, you can install them simply by e.g. running:
140143
Install-Module SecurityPolicyDSC
141144
```
142145

143-
It could be that you need to install PowerShellGet and the NuGet provider and that you have to trust the PSGallery to be able to install the DSC modules.
146+
It could be that you need to install PowerShellGet and the NuGet provider,
147+
and that you have to trust the PSGallery to be able to install the DSC modules.
144148

145-
> Please be aware that this is the most basic example. We advise to always define the module versions in production environments before compiling them and to implement a versioning system to track changes to those DSC configurations. Not defining versions could lead to compiling errors because of functional changes between vmodule versions.
149+
> Please be aware that this is the most basic example. We advise to always define the module versions in production environments before compiling them and to implement a versioning system to track changes to those DSC configurations.
150+
> Not defining versions could lead to compiling errors because of functional changes between module versions.
146151
147152
Defining the versions of the modules could look like this:
148153

@@ -168,7 +173,8 @@ Configuration MSTF_SecurityBaseline_Edge_v107_Computer
168173
}
169174
```
170175

171-
So now that all DSC modules are available and the module versions are defined you need to run the following command in your Powershell to compile it locally:
176+
So now that all DSC modules are available and the module versions are defined,
177+
you need to run the following command in your Powershell to compile it locally:
172178

173179
```
174180
. PATHTOYOURSCRIPT\MSTF_SecurityBaseline_Edge_v107_Computer.ps1

0 commit comments

Comments
 (0)