Skip to content

Commit 06fa837

Browse files
author
Aaron O'Mullan
committed
Fix typos in numbers/operators.md
1 parent 4f8fcb0 commit 06fa837

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

numbers/operators.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Operators
22

3-
You can apply mathematic operations to numbers using some basic operators like:
3+
You can apply mathematic operations to numbers using some basic operators like:
44

55
* **Addition**: ```c = a + b```
66
* **Subtraction**: ```c = a - b```
77
* **Multiplication**: ```c = a * b```
88
* **Division**: ```c = a / b```
99

10-
You can use parentheses just like in math to separate calcul execution: ```c = (a / b) + d```
10+
You can use parentheses just like in math to separate and group expressions: ```c = (a / b) + d```
1111

1212

1313
---
1414

15-
Create a variable `x` which equals to the addition of `a` and `b` divided by `c`and finally multiplicated by `d`.
15+
Create a variable `x` equal to the sum of `a` and `b` divided by `c`and finally multiplied by `d`.
1616

1717
```js
1818
var a = 2034547;

0 commit comments

Comments
 (0)