Skip to content

Commit 9405358

Browse files
authored
1-js/06-advanced-functions/10-bind: fix markup
1 parent 042ebed commit 9405358

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/10-bind/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ The basic syntax is:
100100
```js
101101
// more complex syntax will be little later
102102
let boundFunc = func.bind(context);
103-
````
103+
```
104104

105105
The result of `func.bind(context)` is a special function-like "exotic object", that is callable as function and transparently passes the call to `func` setting `this=context`.
106106

0 commit comments

Comments
 (0)