fix(learn): Correct syntax in the code example (#40811)

Closes #40810
This commit is contained in:
Hernando Guzmán
2021-01-27 16:03:22 -03:00
committed by GitHub
parent 4f4622dd21
commit 3394a654bd

View File

@ -14,7 +14,7 @@ As a reminder, this project is being built upon the following starter project on
```js
assert.isTrue(true, 'this will pass with the boolean value true');
assert.isTrue('true', 'this will NOT pass with the string value 'true');
assert.isTrue('true', 'this will NOT pass with the string value "true"');
assert.isTrue(1, 'this will NOT pass with the number value 1');
```