From ff521a97b8744516a5b5ab38785e94c65f943033 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20=C5=A0kvorc?= Date: Sun, 14 Dec 2014 08:03:35 +0100 Subject: [PATCH] Update 02-displaying-data.md Typo fix --- docs/02-displaying-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02-displaying-data.md b/docs/02-displaying-data.md index 26fe0ac4..bf12d176 100644 --- a/docs/02-displaying-data.md +++ b/docs/02-displaying-data.md @@ -66,7 +66,7 @@ The inputs to this component are called `props` — short for "properties". They ## Components are Just Like Functions -React components are very simple. You can think of them as simple function that take in `props` and `state` (discussed later) and render HTML. Because they're so simple, it makes them very easy to reason about. +React components are very simple. You can think of them as simple functions that take in `props` and `state` (discussed later) and render HTML. Because they're so simple, it makes them very easy to reason about. > Note: >