Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 80e160e

Browse files
committedSep 20, 2018
Fix one more error
1 parent 0a8c56a commit 80e160e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/algorithms/string/palindrome/__true__/palindrome.test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ describe('palindrome', () => {
44
it('should return true if word is a palindrome', () => {
55
expect(palindrome('racecar')).toBe(true);
66
expect(palindrome('car')).toBe(false);
7-
}
7+
});
88
}

0 commit comments

Comments
 (0)
Please sign in to comment.