ExcessiveRangeCheck.html: typos (IDEA-CR-42349)

This commit is contained in:
Tagir Valeev
2019-02-05 16:45:56 +07:00
parent 308b261327
commit 86a4861ca3
@@ -1,6 +1,6 @@
<html>
<body>
Reports condition chains where value range is checked which could be simplified to single check. E.g. <b>x > 2 && x < 4</b> could be
Reports condition chains where a value range is checked which could be simplified to a single check. E.g. <b>x > 2 && x < 4</b> could be
simplified to <b>x == 3</b> or <b>arr.length == 0 || arr.length > 1</b> could be simplified to <b>arr.length != 1</b>.
<!-- tooltip end -->
<p><small>New in 2019.1</small></p>