We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe7ad76 commit ec29132Copy full SHA for ec29132
demo.html
@@ -327,7 +327,7 @@ <h3>Complex type: mathematical expression</h3>
327
<li>An integer</li>
328
<li>An integer followed by a plus sign</li>
329
</ul>
330
- <p>The regular expression for that is <code>^\d+\+\d+$/, /^\d+$|^\d+\+$</code>. Putting it all together, we get:</p>
+ <p>The regular expression for that is <code>/^\d+$|^\d+\+$</code>. Putting it all together, we get:</p>
331
<code>cfg.addType( "additionExpr", /^\d+\+\d+$/, /^\d+$|^\d+\+$/ );</code><br/><br/>
332
<input type="text" id="txtAdditionExpr" />
333
</div>
0 commit comments