Skip to content

Commit cb08705

Browse files
authored
Update faq-functions.md
found a small syntax error in example
1 parent 8448de7 commit cb08705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/faq-functions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ class Alphabet extends React.Component {
155155
this.handleClick = this.handleClick.bind(this);
156156
this.state = {
157157
justClicked: null,
158-
letters: Array.from({length: 26}, (_, i) => String.fromCharCode(A + i)).
158+
letters: Array.from({length: 26}, (_, i) => String.fromCharCode(A + i))
159159
};
160160
}
161161
handleClick(letter) {

0 commit comments

Comments
 (0)