From e2d52b980adf42dc05382873aa945136540ff2a6 Mon Sep 17 00:00:00 2001 From: Jonny-exe <69385502+Jonny-exe@users.noreply.github.com> Date: Mon, 5 Oct 2020 22:49:59 +0200 Subject: [PATCH] Fixed a typo There was written 3 examples but 2 of them were the same, I changed one of them so it matched the description --- readMe.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readMe.md b/readMe.md index f2c2d74..077535d 100644 --- a/readMe.md +++ b/readMe.md @@ -4,7 +4,7 @@
-

30 Days Of React


+

30 Days Of React

linkedin @@ -282,7 +282,7 @@ So far, we saw how to display text using the _console.log()_. If we are printing ```js console.log('Hello, World!') -console.log('Hello, World!') +console.log("Hello, World!") console.log(`Hello, World!`) ```