chore: removed unneeded check for semicolon

This commit is contained in:
Titi
2022-06-04 17:09:55 +01:00
committed by GitHub
parent ece0bfd3c2
commit 14bf77d3b8

View File

@@ -39,7 +39,7 @@ You should not use the assignment operator.
```js
assert(
/let\s*myVar\s*=\s*87;\s*\/*.*\s*([+]{2}\s*myVar|myVar\s*[+]{2});/.test(code)
/let\s*myVar\s*=\s*87;\s*\/*.*\s*([+]{2}\s*myVar|myVar\s*[+]{2})/.test(code)
);
```