From 73f8b348249bc00280018edc46fc00c3dc3cb1fa Mon Sep 17 00:00:00 2001 From: Taha Shah <94569076+tahas022@users.noreply.github.com> Date: Sun, 5 Jan 2025 01:32:59 -0500 Subject: [PATCH] Fixed double quotes (#57925) Co-authored-by: Taha Shahid <90358100+tahas02@users.noreply.github.com> --- .../workshop-calculator/66cc0a9e06e00b75d6782be9.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/workshop-calculator/66cc0a9e06e00b75d6782be9.md b/curriculum/challenges/english/25-front-end-development/workshop-calculator/66cc0a9e06e00b75d6782be9.md index 40b63bb6545..1422a880cea 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-calculator/66cc0a9e06e00b75d6782be9.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-calculator/66cc0a9e06e00b75d6782be9.md @@ -13,7 +13,7 @@ Here is a reminder of how to call a function: ```js function myFunction() { - return 'Hello World'; + return "Hello World"; } // function call