From 0cb6c25d8449aaf5753fb982f8ba9f89da3d135a Mon Sep 17 00:00:00 2001 From: BoopMehNose <33704699+BoopMehNose@users.noreply.github.com> Date: Sun, 31 Mar 2019 14:13:25 -0400 Subject: [PATCH] Updated String Category (grammatical updates and specifications).md (#33779) * Update index.md Updated descriptions for the String category, specified that strings are objects. Corrected grammatical error. * Update index.md --- guide/english/java/data-types/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/english/java/data-types/index.md b/guide/english/java/data-types/index.md index e4fa27346d..607767dc83 100644 --- a/guide/english/java/data-types/index.md +++ b/guide/english/java/data-types/index.md @@ -168,7 +168,7 @@ class demo{ ## String: -String is not a primitive data type, but it lets you store multiple character data types in an array and has many methods that can be used. It is used quite commonly when the user types in data and you have to manipulate it. +String is not a primitive data type, it is an object, but it lets you store multiple character data types in an array and has many methods that can be used. It is used quite commonly when the user types in data and needs to manipulate it later on. In the example below, we try to remove all of the letters from the string and output it: @@ -182,7 +182,7 @@ for(int i=0;i