Skip to content

Commit 5257a84

Browse files
committed
updating proof.ci.js for collatz-conjecture
1 parent 3be0fc0 commit 5257a84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exercises/practice/collatz-conjecture/.meta/proof.ci.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export const steps = (n) => {
22
if (n <= 0) {
3-
throw new Error('Only positive numbers are allowed');
3+
throw new Error('Only positive integers are allowed');
44
}
55

66
const iterate = (number, step) => {

0 commit comments

Comments
 (0)