From 561bc9a26a999dc471a4c8fac575ebb49c9ffeed Mon Sep 17 00:00:00 2001 From: Daniel Lo Nigro Date: Sat, 4 Jan 2014 23:33:02 -0800 Subject: [PATCH] =?UTF-8?q?Change=20=E2=80=9Cnot=20allowed=E2=80=9D=20back?= =?UTF-8?q?=20to=20=E2=80=9Cdiscouraged=E2=80=9D=20since=20you=20technical?= =?UTF-8?q?ly=20*can*=20use=20props=20called=20`class`=20or=20`for`?= =?UTF-8?q?=E2=80=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/02.1-jsx-in-depth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/02.1-jsx-in-depth.md b/docs/02.1-jsx-in-depth.md index 36a503ec..6c2a78d6 100644 --- a/docs/02.1-jsx-in-depth.md +++ b/docs/02.1-jsx-in-depth.md @@ -106,7 +106,7 @@ See [Multiple Components](/react/docs/multiple-components.html) to learn more ab > Note: > -> Since JSX is JavaScript, identifiers such as `class` and `for` are not allowed +> Since JSX is JavaScript, identifiers such as `class` and `for` are discouraged > as XML attribute names. Instead, React DOM components expect attributes like > `className` and `htmlFor`, respectively.