From 9e5ad597cb2c7886073920c999097faa504264a1 Mon Sep 17 00:00:00 2001 From: Moacir Rosa Date: Fri, 10 Feb 2017 13:40:24 -0200 Subject: [PATCH] Only fix a small wrong key in example (#8976) Only fix a small wrong key in example (cherry picked from commit de673bca8d61255bafef5432e61691014279a097) --- docs/docs/introducing-jsx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/introducing-jsx.md b/docs/docs/introducing-jsx.md index c896e80c9cc0b..d83a8e84a914f 100644 --- a/docs/docs/introducing-jsx.md +++ b/docs/docs/introducing-jsx.md @@ -22,7 +22,7 @@ JSX produces React "elements". We will explore rendering them to the DOM in the You can embed any [JavaScript expression](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators#Expressions) in JSX by wrapping it in curly braces. -For example, `2 + 2`, `user.name`, and `formatName(user)` are all valid expressions: +For example, `2 + 2`, `user.firstName`, and `formatName(user)` are all valid expressions: ```js{12} function formatName(user) {