Skip to content

Commit 09806f1

Browse files
author
gerijeb
committed
Fix typo
1 parent 6b0e0e5 commit 09806f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

02_repeatString/repeatString.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ describe('repeatString', () => {
2828
const number = Math.floor(Math.random() * 1000)
2929
/*The .match(/((hey))/g).length is a regex that will count the number of heys
3030
in the result, which if your function works correctly will equal the number that
31-
was randomaly generated. */
31+
was randomly generated. */
3232
expect(repeatString('hey', number).match(/((hey))/g).length).toEqual(number);
3333
});
3434
test.skip('works with blank strings', () => {

0 commit comments

Comments
 (0)