Update curriculum/challenges/english/01-responsive-web-design/learn-css-colors-by-building-a-color-markers-set/step-014.md

Co-authored-by: Shaun Hamilton <shauhami020@gmail.com>
This commit is contained in:
Kristofer Koishigawa
2021-12-20 16:26:47 +09:00
committed by GitHub
parent b52b5b4a1a
commit 6178cadc2c

View File

@@ -28,7 +28,7 @@ assert([...code.matchAll(/<\/div\s*>/gi)][2]);
Your second new `div` element should have an opening tag.
```js
assert([...code.matchAll(/<div.*>/gi)][3]);
assert([...code.matchAll(/<div.*?>/gi)][3]);
```
Your second new `div` element should have a closing tag.