Skip to content

Commit bd14973

Browse files
authored
Update README.md
1 parent 9259ce6 commit bd14973

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/rules/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Cannot call identifiers that are not a function
146146
const x = 1;
147147
x();
148148
let y = 1;
149-
y()
149+
y();
150150
```
151151
The function application on `x` will throw an error, however the function application on `y` will not, as y
152152
can be reassigned, hence it will be a runtime error.

0 commit comments

Comments
 (0)