From 0e516268a64a9a8655b083b4393481fc906cee5c Mon Sep 17 00:00:00 2001 From: Joni Sar Date: Tue, 23 Oct 2018 16:26:23 +0300 Subject: [PATCH] Udpate readme.md / Grammar fix (comma mistake) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I've deleted the comma in the sentence: "JSX is not required to use React, but it makes code more readable, and writing it feels like writing HTML." When the sentence only contains two listed items, they should not be separated by a comma before using "and". You should not use a comma before and if you’re only mentioning two qualities. The dog is well trained and good natured. - V Right way to use The dog is well trained, and good natured. - X Wrong way to use See: https://www.grammarly.com/blog/comma-before-and/ Hence: ...it makes code more readable and writing it feels like writing HTML. - V ...it makes code more readable, and writing it feels like writing HTML. -X Cheers :) Keep up the amazing work! --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a1d1d976da567..eca87cc478cb6 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ ReactDOM.render( This example will render "Hello Taylor" into a container on the page. -You'll notice that we used an HTML-like syntax; [we call it JSX](https://reactjs.org/docs/introducing-jsx.html). JSX is not required to use React, but it makes code more readable, and writing it feels like writing HTML. If you're using React as a `