From 0ce557945eb72042c3cb3da1a1784a69d6d062d0 Mon Sep 17 00:00:00 2001 From: Rea Sand Date: Sat, 3 Nov 2018 18:39:52 +0100 Subject: [PATCH] chore: Remove inline comment --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 95873f7..1cb2850 100644 --- a/readme.md +++ b/readme.md @@ -914,7 +914,7 @@ getNestedPrice({item: {price: 9.99}}) // Some(9.99) 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: ```js -button.onClick(e => console.log("the button has been clicked")) // valid function, but with a side effect (see below) +button.onClick(e => console.log("the button has been clicked")) ``` ```js