From 45681c23e8ca2e7c458e0cf5444f20f05cb12f2a Mon Sep 17 00:00:00 2001 From: Bas Leijdekkers Date: Fri, 20 Jun 2025 15:11:24 +0200 Subject: [PATCH] Java: fix typo in inspection description GitOrigin-RevId: 395bb2147b20508ad2e6479763ddfe38bb71f05e --- .../inspectionDescriptions/InsertLiteralUnderscores.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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