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
+1 -1
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.
}
}
`