From 6dd5960f409c83a1b8c1384fee5be31308f25242 Mon Sep 17 00:00:00 2001 From: deathwarden150 Date: Fri, 15 Feb 2019 02:26:58 +0530 Subject: [PATCH] update index.md (#31278) Made comment better --- guide/english/java/variables/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/java/variables/index.md b/guide/english/java/variables/index.md index 54691595d5..03b82b55e7 100644 --- a/guide/english/java/variables/index.md +++ b/guide/english/java/variables/index.md @@ -41,7 +41,7 @@ j = 10; // variable myFloat now points to the object Float myFloat = new Float(1.0); -//Bytes are one of types in Java and can be +//Bytes are one of the data types in Java and can be //represented with this code int byteValue = 0B101; byte anotherByte = (byte)0b00100001;