Skip to content

Commit

Permalink
ResourceBase: Fix style (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju authored Apr 23, 2024
1 parent 7ca40f3 commit 1b46620
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- `ResourceBase`
- Fixed style changed.

## [1.1.0] - 2023-02-26

### Added
Expand Down
4 changes: 2 additions & 2 deletions source/Classes/010.ResourceBase.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -190,11 +190,11 @@ class ResourceBase

if ($isInDesiredState)
{
Write-Verbose $this.localizedData.InDesiredState
Write-Verbose -Message $this.localizedData.InDesiredState
}
else
{
Write-Verbose $this.localizedData.NotInDesiredState
Write-Verbose -Message $this.localizedData.NotInDesiredState
}

return $isInDesiredState
Expand Down

0 comments on commit 1b46620

Please sign in to comment.