From aec66fe9c58535a52c24957f02baa2a4e6f2d5c2 Mon Sep 17 00:00:00 2001 From: jae0120 <33135140+jae0120@users.noreply.github.com> Date: Thu, 17 Jan 2019 22:03:35 -0600 Subject: [PATCH] grammatical fixes (#27324) --- 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 ad7fd2e13a0..e4fa27346d1 100644 --- a/guide/english/java/data-types/index.md +++ b/guide/english/java/data-types/index.md @@ -76,12 +76,12 @@ Long data type is a 64-bit signed two's complement integer. Example: long a = 100000L, long b = -600000L; - By default all integer type variable is "int". So long num=600851475143 will give an error. + By default all integer type values are "int". So long num=600851475143 will give an error. But it can be specified as long by appending the suffix L (or l) ## Floating­ Point​: -These are also called real numbers and are used for expressions involving fractional precision. These are of two types: `float`, `double`. Float is actually avoided in case of precise data such as currency or research data. +These are also called real numbers and are used for expressions involving fractional precision. These are of two types: `float`, `double`. Floating point is actually avoided in case of precise data such as currency or research data. ### float: