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'); });