Fixed: another minor typo

Damn, it's always this code example, isn't it? Ugh.
This commit is contained in:
arookas 2016-02-16 04:35:52 -05:00
parent 54d59d3fae
commit 64d5c57d34

View file

@ -60,7 +60,7 @@ Instead, they are simply evaluated each time they are actually used (similar to
```javascript
const PI = 3.14;
const TWOPI = 2 * pi;
const TWOPI = 2 * PI;
const R = 300.0;
var circ = R * TWOPI; // this actually compiles to 'var circ = 300.0 * (2 * (3.14));'