We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d04b2d commit 3ac76a8Copy full SHA for 3ac76a8
1 file changed
9-regular-expressions/10-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(regexp) ); // '<a href="/">', '<input type="radio" checked>', '<b>'
13
```
14
15
-In questo caso presumiamo che gli attributi dei tag non contengano `<` e `>` dentro i doppi apici per semplificare le cose.
+In questo caso presumiamo che gli attributi dei tag non contengano `<` e `>` dentro i doppi apici per semplificare l'esercizio.
0 commit comments