From 940a38127b0ceb71cc09d23e48c57caf3c92c8ae Mon Sep 17 00:00:00 2001 From: Robert Jarman Date: Tue, 7 Oct 2025 13:33:57 -0400 Subject: [PATCH] fix(curriculum): add missing ')' to Build a User Configuration Manager test (#62580) --- .../lab-user-configuration-manager/684aaf9ec670c68d20efd0d0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lab-user-configuration-manager/684aaf9ec670c68d20efd0d0.md b/curriculum/challenges/english/blocks/lab-user-configuration-manager/684aaf9ec670c68d20efd0d0.md index 6c63bb5fbe9..84529893957 100644 --- a/curriculum/challenges/english/blocks/lab-user-configuration-manager/684aaf9ec670c68d20efd0d0.md +++ b/curriculum/challenges/english/blocks/lab-user-configuration-manager/684aaf9ec670c68d20efd0d0.md @@ -128,7 +128,7 @@ The `add_setting` function should have two parameters. }) ``` -`add_setting({'theme': 'light'}, ('volume', 'high')` should add a new key-value pair and return the success message `Setting 'volume' added with value 'high' successfully!`. +`add_setting({'theme': 'light'}, ('volume', 'high'))` should add a new key-value pair and return the success message `Setting 'volume' added with value 'high' successfully!`. ```js ({