From a2c9bdd8ba2d65ca3d1d8a3b13a672fd03e7cef2 Mon Sep 17 00:00:00 2001 From: Tuomas Jalonen Date: Mon, 6 Apr 2026 03:08:31 +0300 Subject: [PATCH] fix(curriculum): correct incomplete code snippet in example question (#66801) --- .../688166750663c22e2b1c8e80.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-understanding-bash-scripting/688166750663c22e2b1c8e80.md b/curriculum/challenges/english/blocks/lecture-understanding-bash-scripting/688166750663c22e2b1c8e80.md index 3ea9e824a6f..8ded49d0421 100644 --- a/curriculum/challenges/english/blocks/lecture-understanding-bash-scripting/688166750663c22e2b1c8e80.md +++ b/curriculum/challenges/english/blocks/lecture-understanding-bash-scripting/688166750663c22e2b1c8e80.md @@ -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--