From 636c5db5d65656327d054b4720a340d97c8e3efc Mon Sep 17 00:00:00 2001 From: marjune Date: Fri, 25 Jan 2019 12:17:41 +0800 Subject: [PATCH] Update string.md fix(string): use ANSI quote --- docs/string.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/string.md b/docs/string.md index 9bf46c4..73ac087 100644 --- a/docs/string.md +++ b/docs/string.md @@ -811,7 +811,7 @@ jsx` java` class HelloWorldApp { public static void main(String[] args) { - System.out.println(“Hello World!”); // Display the string. + System.out.println("Hello World!"); // Display the string. } } `