📝 docs: Fix Task 7 Step 2 grep to match CSS-nesting unwrap

This commit is contained in:
Keith Solomon
2026-07-24 23:57:25 -05:00
parent 415934e0bf
commit 7663ca63f6
@@ -512,7 +512,7 @@ Expected: completes with no errors. The output file `static/dist/theme.css` is u
The build unwraps CSS-nesting `&__heading` into `__heading.services-list` (no literal `.services-list__heading` is emitted). Use a fixed-string search that matches the un-nested form:
```bash
grep -cF "services-list__heading" static/dist/theme.css
grep -cF "__heading.services-list" static/dist/theme.css
```
Expected: `1` or more. (Note: on Windows Git-Bash, prefer `grep -F` because POSIX `\\:` escapes are stripped before reaching grep.)