Commit 08fa6fe
committed
Fix harmless regex glitch
The regex included `(:? ... )` instead of `(?: ... )` when intending a
non-capturing group, but this was harmless as (1) the captured group
was ignored anyway and (2) the `:?` construct would helpfully match
nothing. The full group would end up being something like
`(:?dt|dd|/dl)` which is just slightly a superset of the intended
`(?:dt|dd|/dl)` and the capture is ignored anyway, so simplify the
regex.1 parent 0320bd4 commit 08fa6fe
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
75 | | - | |
| 75 | + | |
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
| |||
0 commit comments