JS: fix links in qhelp file

This commit is contained in:
Asger F
2018-11-15 16:49:48 +00:00
parent 76a69f4ff2
commit 2870209299

View File

@@ -27,14 +27,14 @@ If the check is needed to guard against <code>NaN</code> values, insert a commen
The following example finds the index of an element in a given slice of the array:
</p>
<sample src="examples/UselessConditional.js" />
<sample src="examples/UselessRangeCheck.js" />
<p>
The condition <code>i &lt; end</code> at the end is always false, however. The code can be clarified if the
redundant condition is removed:
</p>
<sample src="examples/UselessConditionalGood.js" />
<sample src="examples/UselessRangeCheckGood.js" />
</example>
<references>