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