Skip to content

Commit b6a2d2e

Browse files
committed
📝 Update readme
1 parent bf5c786 commit b6a2d2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,12 @@ Navigate to `Introduction\AboutAssertions.Koans.ps1`. Near the top you'll see:
134134
```powershell
135135
It 'is a simple comparison' {
136136
# Some truths are absolute.
137-
'__' | Should -Be 'True!'
137+
$____ | Should -Be $true
138138
}
139139
```
140140

141-
The `__` represents a blank for you to fill, and `| Should -Be 'True!'` shows the expected result.
142-
To pass this koan you need to replace `__` with `True!`, like this: `'True!' | Should -Be 'True!'`.
141+
The `$___` represents a blank for you to fill, and `| Should -Be $true` shows the expected result.
142+
To pass this koan you need to replace `$____` with `$true` to fulfil the assertion: `$true | Should -Be $true`
143143

144144
#### 3. Run `Show-Karma` again to see how you did
145145

0 commit comments

Comments
 (0)