From 2b4b34ac0f83ea369c8dbac04491973b72e39646 Mon Sep 17 00:00:00 2001 From: Brian Vaughn Date: Mon, 13 Nov 2017 08:16:58 -0800 Subject: [PATCH] Corrected my own typo :) --- 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 9fe225da..6cb41a57 100644 --- a/content/docs/faq-functions.md +++ b/content/docs/faq-functions.md @@ -81,7 +81,7 @@ class Foo extends Component { >**Note:** > ->Using an arrow in render creates a new function each time the component renders, which may have performance implications; (see below). +>Using an arrow function in render creates a new function each time the component renders, which may have performance implications; (see below). ### Is it OK to use arrow functions in render methods?