Skip to content

Commit 0ce5579

Browse files
committed
chore: Remove inline comment
1 parent 1e82386 commit 0ce5579

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ getNestedPrice({item: {price: 9.99}}) // Some(9.99)
914914
A **function** is a special kind of language construct: often specified as an arrow or lambda expression - an anonymous or named block of code (the body) with optional parameters. It allows us to treat a piece of code as data and e.g. pass it to methods:
915915

916916
```js
917-
button.onClick(e => console.log("the button has been clicked")) // valid function, but with a side effect (see below)
917+
button.onClick(e => console.log("the button has been clicked"))
918918
```
919919

920920
```js

0 commit comments

Comments
 (0)