diff --git a/subjects/sum/README.md b/subjects/sum/README.md index ce4e1991f..c76a8ff0a 100644 --- a/subjects/sum/README.md +++ b/subjects/sum/README.md @@ -2,7 +2,7 @@ ### Instructions -Write a function that takes two single digit numbers as a string and returns the sum as an int. If one of the arguments is not a single digit number, return 0. +Write a function that takes two single digit numbers as a string and returns the sum as an int. If the number of digits from one of the arguments is more than one, return 0. ### Expected function