Skip to content
This repository was archived by the owner on Jul 20, 2025. It is now read-only.

Commit 47bd7ba

Browse files
committed
commit
1 parent b5527da commit 47bd7ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/language/nullability-and-optionality.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In JavaScript, you may have been using `if`/`else` statements for controlling th
2626
let max = 10;
2727
if (max !== null && max !== undefined) {
2828
let someMax = max;
29-
console.log(`The maximum is ${someMax}.`); // 输出:The maximum is 10.
29+
console.log(`The maximum is ${someMax}.`); // Output:The maximum is 10.
3030
}
3131
```
3232

src/testing/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ For more information, see "[Showing Function Output][test-output]".
4343
[test-output]: https://doc.rust-lang.org/book/ch11-02-running-tests.html#showing-function-output
4444

4545
## Assertions
46-
JavaScript users have multiple ways to assert, depending on the framework being used. For example, an assertion Jest might look like:
46+
JavaScript users have multiple ways to assert, depending on the framework being used. For example, an assertion in Jest might look like:
4747

4848
```js
4949
test('something has the right length', () => {

0 commit comments

Comments
 (0)