diff --git a/java/java-impl/resources/inspectionDescriptions/InsertLiteralUnderscores.html b/java/java-impl/resources/inspectionDescriptions/InsertLiteralUnderscores.html index 9295ae4a1016..76e058567571 100644 --- a/java/java-impl/resources/inspectionDescriptions/InsertLiteralUnderscores.html +++ b/java/java-impl/resources/inspectionDescriptions/InsertLiteralUnderscores.html @@ -1,6 +1,7 @@
-Reports long numeric literals without underscores and suggests adding them. Underscores make such literals easier to read. +Reports long numeric literals without underscore separators and suggests adding them. +Underscore separators can make such literals easier to read.Example:
1000000
@@ -10,7 +11,7 @@ Reports long numeric literals without underscores and suggests adding them. Unde
1_000_000
-This inspection only reports if the language level of the project of module is 7 or higher.
+This inspection only reports if the language level of the project or module is 7 or higher.
New in 2020.2