Skip to content

Commit

Permalink
Fix lint issue with inconsistent strong style
Browse files Browse the repository at this point in the history
This resolves the lint error

```
content/custom_resource_glossary.md:258:44 MD050/strong-style Strong style should be consistent [Expected: underscore; Actual: asterisk]
```

Signed-off-by: Gene Wood <[email protected]>
  • Loading branch information
gene1wood committed Feb 1, 2023
1 parent b877297 commit 5c162c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions content/custom_resource_glossary.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ The following properties are identical to the properties in the execute resource
- `property :user`
- `property :sensitive`

Because both the custom properties and the **execute** properties are identical, this
Because both the custom properties and the __execute__ properties are identical, this
will result in an error message similar to:

```ruby
Expand Down Expand Up @@ -306,7 +306,7 @@ where:
- `user new_resource.user`
- `sensitive new_resource.sensitive`

Correctly use the properties of the **execute** resource and not the identically-named override properties of the custom resource.
Correctly use the properties of the __execute__ resource and not the identically-named override properties of the custom resource.

## property

Expand Down Expand Up @@ -566,7 +566,7 @@ reset_property(:password)

`coerce` is used to transform user input into a canonical form. The
value is passed in, and the transformed value returned as output. Lazy
values will **not** be passed to this method until after they are
values will __not__ be passed to this method until after they are
evaluated.

`coerce` is run in the context of the instance, which gives it access to
Expand Down

0 comments on commit 5c162c9

Please sign in to comment.