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 c709aa1 commit 1072055Copy full SHA for 1072055
9-regular-expressions/08-regexp-greedy-and-lazy/4-find-html-tags-greedy-lazy/task.md
@@ -12,4 +12,4 @@ let str = '<> <a href="/"> <input type="radio" checked> <b>';
12
alert( str.match(reg) ); // '<a href="/">', '<input type="radio" checked>', '<b>'
13
```
14
15
-Let's assume that may not contain `<` and `>` inside (in quotes too), that simplifies things a bit.
+Here we assume that tag attributes may not contain `<` and `>` (inside squotes too), that simplifies things a bit.
0 commit comments