1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-24 18:32:22 +00:00

Update string.md

fix(string): use ANSI quote
This commit is contained in:
marjune 2019-01-25 12:17:41 +08:00 committed by GitHub
parent 46981f6b9a
commit 636c5db5d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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.
}
}
`