From da3a9670b92f70f16b848f9466aa971faa9639af Mon Sep 17 00:00:00 2001 From: mian3se <44347607+mian3se@users.noreply.github.com> Date: Wed, 21 Nov 2018 19:27:22 -0800 Subject: [PATCH] Update index.md (#25589) --- guide/english/java/strings/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/java/strings/index.md b/guide/english/java/strings/index.md index b436c75959..8289013d99 100644 --- a/guide/english/java/strings/index.md +++ b/guide/english/java/strings/index.md @@ -3,7 +3,7 @@ title: Strings --- # Strings -Strings are sequences of characters. In Java, a `String` is an `Object`. Strings should not be confused with `char` as characters are literally a single value rather than a sequence of characters. You can still use a single value within a String; however, it is preferred to use `char` when you are checking for a single character. +Strings are sequences of characters. In Java, a `String` is not a `Primitive` but rather, it's called an `Object`. Strings should not be confused with `char` as characters are literally a single value rather than a sequence of characters. You can still use a single value within a String; however, it is preferred to use `char` when you are checking for a single character. ```java String course = "FreeCodeCamp";