Skip to content
This repository has been archived by the owner on Sep 10, 2022. It is now read-only.

Commit

Permalink
Corrected missing ;
Browse files Browse the repository at this point in the history
  • Loading branch information
MudroadWhite committed May 18, 2022
1 parent 9379023 commit 151bae3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion identity.hhs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 151bae3

Please sign in to comment.