From df034616bd3ab2195dc6c6a5cb09948294751247 Mon Sep 17 00:00:00 2001 From: "chen.xiaofeng" Date: Fri, 9 Apr 2021 10:26:02 +0800 Subject: [PATCH] Quotes should be double quotes --- readMe.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readMe.md b/readMe.md index f8d88b9..7f5f5d1 100644 --- a/readMe.md +++ b/readMe.md @@ -255,7 +255,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!`) ```