Skip to content

Commit

Permalink
workflow/math: Fixed typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
umamialex committed Sep 1, 2016
1 parent 5f98159 commit 9f1bc73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions workflow/math.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Native parts of JavaScript are all written in a lower-level language such as C++. That means these methods are compiled down to machine code as part of the browser and therefore don't have the same limitations as your code.

The `Math` object contains properties and methods designed to make mathematical operations easier. There are several matematical constants available:
The `Math` object contains properties and methods designed to make mathematical operations easier. There are several mathematical constants available:

| Constant | Meaning |
|---------------|------------------------------------------------------|
Expand All @@ -15,7 +15,7 @@ The `Math` object contains properties and methods designed to make mathematical
| `Math.SQRT1_2`| The square root of 1/2 |
| `Math.SQRT2` | The square root of 2 |

Each of these values is precalculated, so there is no need for you to calculate them yourself. There are also method to handle mathematical calculations:
Each of these values is precalculated, so there is no need for you to calculate them yourself. There are also methods to handle mathematical calculations:

| Method | Meaning |
|-------------------------|---------------------------|
Expand Down

0 comments on commit 9f1bc73

Please sign in to comment.