Updated SC2091 (markdown)

Will Holen
2020-09-08 16:04:24 -07:00
parent ba6b9aa038
commit 1c68b310e4

@@ -15,7 +15,7 @@ or
make_command() {
printf 'cat header %q footer > %q\n' "$1" "$2" | tee log
}
$(make_command)
$(make_command foo.html output/foo.html)
```
### Correct code:
@@ -33,7 +33,7 @@ or
make_command() {
printf 'cat header %q footer > %q\n' "$1" "$2" | tee log
}
eval "$(make_command)"
eval "$(make_command foo.html output/foo.html)"
```
### Rationale: