Skip to content

Commit a733718

Browse files
committed
2 parents ed4878f + 3155369 commit a733718

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

1-js/02-first-steps/11-logical-operators/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ This leads to some interesting usage compared to a "pure, classical, boolean-onl
133133
alert(x); // undefined, because (x = 1) not evaluated
134134
```
135135

136-
If, instead, the first argument is `false`, `OR` evaluates the second one, thus running the assignment:
136+
If, instead, the first argument is `false`, `||` evaluates the second one, thus running the assignment:
137137

138138
```js run no-beautify
139139
let x;

1-js/03-code-quality/05-testing-mocha/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ Testing finished – after all tests (after)
296296

297297
[edit src="beforeafter" title="Open the example in the sandbox."]
298298

299-
Usually, `beforeEach/afterEach` (`before/each`) are used to perform initialization, zero out counters or do something else between the tests (or test groups).
299+
Usually, `beforeEach/afterEach` (`before/after`) are used to perform initialization, zero out counters or do something else between the tests (or test groups).
300300
````
301301
302302
## Extending the spec

0 commit comments

Comments
 (0)