From e5e4203825412cf861a5a841c996bb8a968b85fa Mon Sep 17 00:00:00 2001 From: Nathan Hardy Date: Sat, 22 Oct 2016 13:05:37 +1100 Subject: [PATCH] Fix erroneous '}' in JSX examples --- docs/docs/jsx-in-depth.md | 2 +- docs/docs/reconciliation.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/docs/jsx-in-depth.md b/docs/docs/jsx-in-depth.md index 033e00394e12..676d30fdd2db 100644 --- a/docs/docs/jsx-in-depth.md +++ b/docs/docs/jsx-in-depth.md @@ -70,7 +70,7 @@ var MyComponents = { } function BlueDatePicker() { - return ; + return ; } ``` diff --git a/docs/docs/reconciliation.md b/docs/docs/reconciliation.md index 9860972eb1e8..0f9f25c37f1d 100644 --- a/docs/docs/reconciliation.md +++ b/docs/docs/reconciliation.md @@ -117,14 +117,14 @@ In order to solve this issue, React supports a `key` attribute. When children ha ```xml
    -
  • Duke
  • -
  • Villanova
  • +
  • Duke
  • +
  • Villanova
    -
  • Connecticut
  • -
  • Duke
  • -
  • Villanova
  • +
  • Connecticut
  • +
  • Duke
  • +
  • Villanova
```