Skip to content

Commit 3fff63a

Browse files
committed
* Grammo
1 parent b0e57a3 commit 3fff63a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

spreadsheet/chapter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ Next we check if `sheet[coord]` is a number by converting it to numeric with pre
406406
if (sheet[coord] !== x.toString()) { x = sheet[coord]; }
407407
```
408408

409-
If the initial character of `x` is `=`, then it’s a formula cell. We evaluate the part after `=` with `eval.call()`, using the first argument `null` tells `eval` to run in the _global scope_, hiding the _lexical scope_ variables like `x` and `sheet` from the evaluation:
409+
If the initial character of `x` is `=`, then it’s a formula cell. We evaluate the part after `=` with `eval.call()`, using the first argument `null` to tell `eval` to run in the _global scope_, hiding the _lexical scope_ variables like `x` and `sheet` from the evaluation:
410410

411411
```js
412412
// Evaluate formula cells that begin with =

0 commit comments

Comments
 (0)