From 7a062bd07d08f406737994c444a5547ffd4cbf62 Mon Sep 17 00:00:00 2001 From: Chandrashekhar R <73425927+cr2007@users.noreply.github.com> Date: Mon, 21 Aug 2023 15:55:17 +0400 Subject: [PATCH] Minor typo fix in the `graduationFor` function --- exercises/concept/custom-signs/custom-signs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/custom-signs/custom-signs.js b/exercises/concept/custom-signs/custom-signs.js index 26d729bc9b..d9f5dad561 100644 --- a/exercises/concept/custom-signs/custom-signs.js +++ b/exercises/concept/custom-signs/custom-signs.js @@ -39,7 +39,7 @@ export function buildBirthdaySign(age) { */ export function graduationFor(name, year) { - throw new Error('Implement the graduationForm function'); + throw new Error('Implement the graduationFor function'); } /**