Skip to content
Prev Previous commit
Next Next commit
🐛 FIX: Spelling mistake fixes
  • Loading branch information
omkarnathparida committed Oct 7, 2022
commit d3a3b331c7d964262f524c37afb767c87994b6c3
2 changes: 1 addition & 1 deletion Project-Euler/test/Problem007.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ describe('checking nth prime number', () => {
it('should be invalid input if number is 0', () => {
expect(nthPrime(0)).toBe('Invalid Input')
})
test('if the number is greather than 0', () => {
test('if the number is greater than 0', () => {
expect(nthPrime(10)).toBe(29)
})
// Project Euler Condition Check
Expand Down