From cb0870514bd8ab384e92496cdd7e6508373cc75b Mon Sep 17 00:00:00 2001 From: David DeAngelis Date: Wed, 17 Jan 2018 15:17:56 -0500 Subject: [PATCH] Update faq-functions.md found a small syntax error in example --- content/docs/faq-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/faq-functions.md b/content/docs/faq-functions.md index b2846355..337bc1fe 100644 --- a/content/docs/faq-functions.md +++ b/content/docs/faq-functions.md @@ -155,7 +155,7 @@ class Alphabet extends React.Component { this.handleClick = this.handleClick.bind(this); this.state = { justClicked: null, - letters: Array.from({length: 26}, (_, i) => String.fromCharCode(A + i)). + letters: Array.from({length: 26}, (_, i) => String.fromCharCode(A + i)) }; } handleClick(letter) {