From 151bae3c087e9abe371b25db5ce70fdac6623394 Mon Sep 17 00:00:00 2001 From: MudroadWhite <53061787+MudroadWhite@users.noreply.github.com> Date: Wed, 18 May 2022 16:39:40 -0500 Subject: [PATCH] Corrected missing `;` --- identity.hhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/identity.hhs b/identity.hhs index 6e76622..4ebc73d 100644 --- a/identity.hhs +++ b/identity.hhs @@ -15,7 +15,7 @@ function identity(input) { } // Input should be a positive integer if (!Number.isInteger(input) || input < 0) { - throw new Error('Excepted positive integer input') + throw new Error('Excepted positive integer input'); } // Then we return special Mat value when input is 0 or 1