From cf037f7f1dca42bc17a402623c97dfe6d05ed940 Mon Sep 17 00:00:00 2001 From: Phillnavy <34165616+Phillnavy@users.noreply.github.com> Date: Mon, 7 Jan 2019 11:15:37 -0500 Subject: [PATCH] AddedStringsToVariables.md (#26546) * Update index.md * Fixed comment for String type --- guide/english/java/variables/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/guide/english/java/variables/index.md b/guide/english/java/variables/index.md index 6c94061029..54691595d5 100644 --- a/guide/english/java/variables/index.md +++ b/guide/english/java/variables/index.md @@ -31,6 +31,7 @@ int i = 10; double amount = 10.0; boolean isOpen = false; char c = 'a'; // Note the single quotes +String s = "Hello World"; // String is created with double quotes //Variables can also be declared in one statement, and assigned values later. int j;