From eda96e7cad92e7f77a7b56c8b535171e4b2d5e6b Mon Sep 17 00:00:00 2001 From: Randell Dawson <5313213+randelldawson@users.noreply.github.com> Date: Mon, 9 Jul 2018 11:27:37 -0700 Subject: [PATCH] Corrected grammar mistake and made small wording change As suggested by @KoniKodes, I changed the "a" to "an" in the first sentence to correct the grammatical error. Also, removed the "with JSX," and from the second sentence and started the sentence with "It". --- .../learn/src/introductions/front-end-libraries/react/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/learn/src/introductions/front-end-libraries/react/index.md b/packages/learn/src/introductions/front-end-libraries/react/index.md index f9441fd2bda..73c539e2efc 100644 --- a/packages/learn/src/introductions/front-end-libraries/react/index.md +++ b/packages/learn/src/introductions/front-end-libraries/react/index.md @@ -5,6 +5,6 @@ superBlock: Front End Libraries --- ## Introduction to the React Challenges -React, popularized by Facebook, is a open-source JavaScript library for building user interfaces. With JSX, it is used to create components, handle state and props, utilize event listeners and certain life cycle methods to update data as it changes. +React, popularized by Facebook, is an open-source JavaScript library for building user interfaces. It is used to create components, handle state and props, utilize event listeners and certain life cycle methods to update data as it changes. React combines HTML with JavaScript functionality to create its own markup language, JSX. This section will introduce you to all of these concepts and how to implement them for use with your own projects.