Skip to content

Commit 1072055

Browse files
committed
minor
1 parent c709aa1 commit 1072055

File tree

1 file changed

+1
-1
lines changed
  • 9-regular-expressions/08-regexp-greedy-and-lazy/4-find-html-tags-greedy-lazy

1 file changed

+1
-1
lines changed

9-regular-expressions/08-regexp-greedy-and-lazy/4-find-html-tags-greedy-lazy/task.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ let str = '<> <a href="/"> <input type="radio" checked> <b>';
1212
alert( str.match(reg) ); // '<a href="/">', '<input type="radio" checked>', '<b>'
1313
```
1414

15-
Let's assume that may not contain `<` and `>` inside (in quotes too), that simplifies things a bit.
15+
Here we assume that tag attributes may not contain `<` and `>` (inside squotes too), that simplifies things a bit.

0 commit comments

Comments
 (0)