From 1b39ae7f700c4ce3d9b68903a5b1252fae563bae Mon Sep 17 00:00:00 2001 From: billalp Date: Mon, 4 Nov 2019 21:56:12 +0000 Subject: [PATCH] Tidy up --- repeatString/repeatString.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repeatString/repeatString.spec.js b/repeatString/repeatString.spec.js index cf38828..bad3406 100644 --- a/repeatString/repeatString.spec.js +++ b/repeatString/repeatString.spec.js @@ -9,7 +9,7 @@ describe('repeatString', function() { expect(repeatString('hey', 10)).toEqual('heyheyheyheyheyheyheyheyheyhey'); }); - it('repeats the string 1 times', function() { + it('repeats the string 1 time', function() { expect(repeatString('hey', 1)).toEqual('hey'); });