Skip to content

Commit 83c1c5d

Browse files
Update about_Plaster_CreatingAManifest.help.md
1 parent 8cf89b9 commit 83c1c5d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/en-US/about_Plaster_CreatingAManifest.help.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ template. This field is automatically generated if not given a value.
4747
- `tags` - Tags used to describe the purpose of the template.
4848
- `author` - (Optional) Authors name or details.
4949

50-
An example of the settings explained above can be shown by running `New-PlasterManifest` this would give you something similar to the the following:
50+
An example of the settings explained above can be shown by running `New-PlasterManifest` this would give you something similar to the following:
5151
```xml
5252
<?xml version="1.0" encoding="utf-8"?>
5353
<plasterManifest
@@ -179,7 +179,7 @@ Choice[0]:
179179
```
180180

181181
### Parameter Type: Other
182-
The `user-fullname` and `user-email` parameter types are the same as the `text` type, except that they get their default values from from the user's .gitconfig file (if the user has one, and no default is set in the manifest).
182+
The `user-fullname` and `user-email` parameter types are the same as the `text` type, except that they get their default values from the user's .gitconfig file (if the user has one, and no default is set in the manifest).
183183

184184
Here is an example of the XML for this parameter.
185185
```xml
@@ -195,7 +195,7 @@ Enter your full name (Your Name):
195195
```
196196

197197
## Content
198-
There are a selection of elements in the `content` block that can be used to specify all of the content that should be included with your template and how it should be created and transformed into the end product that the template provides.
198+
There is a selection of elements in the `content` block that can be used to specify all of the content that should be included with your template and how it should be created and transformed into the end product that the template provides.
199199

200200
The available element types are:
201201
- `file` - Specify one or more files to copy under the destination folder.
@@ -311,7 +311,7 @@ Available attributes for this content element are:
311311
- `condition` - Used to determine whether a directive is executed. If the condition (a PowerShell expression) evaluates to true, it will execute.
312312
- `openInEditor` - Specifies whether the file should be opened in the editor (true) after scaffolding or not (false). The PowerShell extension for Visual Studio Code honors this setting.
313313

314-
Here is a simple example of the modify element, using a regular expressions:
314+
Here is a simple example of the modify element, using a regular expression:
315315

316316
```xml
317317
<modify path='.vscode\tasks.json' encoding='UTF8'
@@ -361,7 +361,7 @@ Available attributes for this content element:
361361
- `minimumVersion` - The required module's minimum version.
362362
- `maximumVersion` - The required module's maximum version.
363363
- `requiredVersion` - Specifies a specific version of the module. This attribute cannot be used with either the `minimumVersion` or `maximumVersion` attributes. Use this attribute rarely as any update to the module that changes its version will result in this check failing.
364-
- `message` - Specifies a custom message to display after the standard Plaster message when the specified module's is not available on the target machine. This message should be used to tell the user what functionality will not work without the specified module.
364+
- `message` - Specifies a custom message to display after the standard Plaster message when the specified module is not available on the target machine. This message should be used to tell the user what functionality will not work without the specified module.
365365
- `condition` - Used to determine whether a directive is executed. If the condition (a PowerShell expression) evaluates to true, it will execute.
366366

367367
#### NOTE: All versions in this element should be specified in the three part MAJOR.MINOR.PATCH (Semver) format.
@@ -407,7 +407,7 @@ In addition to these variables, Plaster defines a set of built-in variables:
407407

408408
- PLASTER_TemplatePath - The absolute path to the template directory.
409409
- PLASTER_DestinationPath - The absolute path to the destination directory.
410-
- PLASTER_DestinationName - The name of the destinaion directory.
410+
- PLASTER_DestinationName - The name of the destination directory.
411411
- PLASTER_FileContent - The contents of a file be modified via the `<modify>` directive.
412412
- PLASTER_DirSepChar - The directory separator char for the platform.
413413
- PLASTER_HostName - The PowerShell host name e.g. $Host.Name

0 commit comments

Comments
 (0)