From b5ffab8786ad5dc32788e6f5b0622c0c5614b9f7 Mon Sep 17 00:00:00 2001 From: estlop Date: Wed, 29 Jun 2022 12:00:51 +0100 Subject: [PATCH] fix: Fix typo --- subjects/sum/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subjects/sum/README.md b/subjects/sum/README.md index 2675f0be..ce4e1991 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 one of the arguments is not a single digit number, return 0. ### Expected function