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

Closes #40810
pull/40836/head
Hernando Guzmán 2021-01-27 16:03:22 -03:00 committed by GitHub
parent 4f4622dd21
commit 3394a654bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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');
```