fix(curriculum): correct incomplete code snippet in example question (#66801)

This commit is contained in:
Tuomas Jalonen
2026-04-06 03:08:31 +03:00
committed by GitHub
parent f3e3d9de5d
commit a2c9bdd8ba

View File

@@ -91,7 +91,7 @@ The shebang appears at the very beginning of a script file.
## --text--
In the example script, what does the line for server in `"${servers[@]}"` accomplish?
In the example script, what does the line `for server in "${servers[@]}"` accomplish?
## --answers--