Skip to content

Commit 775e63d

Browse files
committed
JS: Fix qhelp validation error
1 parent d55d5cc commit 775e63d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

javascript/ql/src/RegExp/RegExpAlwaysMatches.qhelp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@ In this case, testing if a match exists is redundant and indicates dead code.
2222

2323
<p>
2424
Examine the regular expression and determine how it was intended to match:
25+
</p>
26+
2527
<ul>
2628
<li>To match the whole input string, add anchors at the beginning and end of the regular expression.</li>
2729
<li>To search for an occurrence within the input string, consider what the shortest meaningful match is and restrict the
2830
regular expression accordingly, such as by changing a <code>*</code> to a <code>+</code>.</li>
2931
</ul>
30-
</p>
3132

3233
</recommendation>
3334
<example>

0 commit comments

Comments
 (0)