Skip to content

Commit 1b46620

Browse files
authored
ResourceBase: Fix style (#12)
1 parent 7ca40f3 commit 1b46620

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
## [Unreleased]
77

8+
### Fixed
9+
10+
- `ResourceBase`
11+
- Fixed style changed.
12+
813
## [1.1.0] - 2023-02-26
914

1015
### Added

source/Classes/010.ResourceBase.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,11 +190,11 @@ class ResourceBase
190190

191191
if ($isInDesiredState)
192192
{
193-
Write-Verbose $this.localizedData.InDesiredState
193+
Write-Verbose -Message $this.localizedData.InDesiredState
194194
}
195195
else
196196
{
197-
Write-Verbose $this.localizedData.NotInDesiredState
197+
Write-Verbose -Message $this.localizedData.NotInDesiredState
198198
}
199199

200200
return $isInDesiredState

0 commit comments

Comments
 (0)