Skip to content

Commit 24224dc

Browse files
authored
Merge pull request #1893 from vin18/patch-2
fixing a typo on line 431
2 parents c799f28 + fe78701 commit 24224dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

1-js/02-first-steps/08-operators/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ The list of operators:
428428
- RIGHT SHIFT ( `>>` )
429429
- ZERO-FILL RIGHT SHIFT ( `>>>` )
430430
431-
These operators are used very rarely, when we need to fiddle with numebers on the very lowest (bitwise) level. We won't need these operators any time soon, as web development has little use of them, but in some special areas, such as cryptography, they are useful. You can read the [Bitwise Operators](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators) article on MDN when a need arises.
431+
These operators are used very rarely, when we need to fiddle with numbers on the very lowest (bitwise) level. We won't need these operators any time soon, as web development has little use of them, but in some special areas, such as cryptography, they are useful. You can read the [Bitwise Operators](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators) article on MDN when a need arises.
432432

433433
## Comma
434434

0 commit comments

Comments
 (0)