diff --git a/java/java-impl/src/inspectionDescriptions/ComparatorCombinators.html b/java/java-impl/src/inspectionDescriptions/ComparatorCombinators.html
index 913ff66c193c..23a03e4e7971 100644
--- a/java/java-impl/src/inspectionDescriptions/ComparatorCombinators.html
+++ b/java/java-impl/src/inspectionDescriptions/ComparatorCombinators.html
@@ -3,7 +3,6 @@
Reports cases where a Comparator is defined as a lambda expression which could be expressed using
methods like Comparator.comparing().
This inspection also reports chain comparisons which can be replaced by Comparator.thenComparing().
-
Example:
myList.sort((person1, person2) -> person1.getName().compareTo(person2.getName()));
@@ -23,6 +22,7 @@ This inspection also reports chain comparisons which can be replaced by Co
.thenComparing(Person::second)
.thenComparingInt(Person::third));
+
New in 2016.3