From 6c9459fcf13b6eac4e778353e578e36596ce1e18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Feje=C5=A1?= Date: Tue, 19 Dec 2017 21:46:07 +0100 Subject: [PATCH] fix typo --- snippets/isPrime.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/isPrime.md b/snippets/isPrime.md index 1906c7d18..a03e070f9 100644 --- a/snippets/isPrime.md +++ b/snippets/isPrime.md @@ -1,6 +1,6 @@ ### isPrime -Checks if the provided intiger is primer number. +Checks if the provided intiger is prime number. Returns `false` if the provided number has positive divisors other than 1 and itself or if the number itself is less than 2.