From 61934f4bde1224dc1edbe1e834d4552616ec5ca4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20S=C3=B6rng=C3=A5rd?= Date: Thu, 12 Oct 2023 13:33:01 +0200 Subject: [PATCH] Remove extra backtick --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 96216d4..e523373 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -341,7 +341,7 @@ pub const fn are_prime() -> [bool; N] { /// - -1 if `n` is a square-free integer with an odd number of prime factors, /// - 0 if `n` has a squared prime factor. /// -/// Uses a small wheel to check prime factors up to `√n`` and exits early if +/// Uses a small wheel to check prime factors up to `√n` and exits early if /// there is a squared factor. /// /// # Example