From 5bbc4b1985d7c54a5cdc1e8616f7264ba256b7e9 Mon Sep 17 00:00:00 2001 From: Ashan Fernando Date: Fri, 24 Jan 2025 19:45:01 +0530 Subject: [PATCH] Update get-hello-world.ts --- test-data/test-scope/get-hello-world/get-hello-world.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-data/test-scope/get-hello-world/get-hello-world.ts b/test-data/test-scope/get-hello-world/get-hello-world.ts index 6eb1eab..0953a0d 100644 --- a/test-data/test-scope/get-hello-world/get-hello-world.ts +++ b/test-data/test-scope/get-hello-world/get-hello-world.ts @@ -2,7 +2,7 @@ type Language = 'en' | 'es'; /** - * returns a 'hello world' message, in different languages 6 + * returns a 'hello world' message, in different languages 7 */ export function getHelloWorld(language: Language = 'en') { if (language === 'es') return '¡Hola mundo!';