From d2cb8f9cc4eb57b28b01f185de17538326ce839b Mon Sep 17 00:00:00 2001 From: Preetham Gujjula Date: Thu, 4 Apr 2024 20:43:54 -0700 Subject: [PATCH] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0d9d627..30ea1bc 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,10 @@ This project licensed under BSD-3-Clause (except for `.gitignore`, which is under CC0-1.0), and follows [REUSE](https://reuse.software) licensing principles. -[^1]: Note that this is really the Sieve of Erastosthenes, as defined in the classic [The Genuine Sieve of Eratosthenes](https://www.cs.hmc.edu/~oneill/papers/Sieve-JFP.pdf). Constrast this to other simple prime generation implementations, such as
+[^1]: Note that this is really the Sieve of Erastosthenes, as defined in the
+classic [The Genuine Sieve of Eratosthenes](https://www.cs.hmc.edu/~oneill/papers/Sieve-JFP.pdf).
+Constrast this to other simple prime generation implementations, such as 
 primes = sieve [2..]
 sieve (p : xs) = p : sieve [x | x <- xs, x \`rem\` p > 0]
-which are actually trial division and not faithful implementations of the Sieve of Erastosthenes. +which are actually trial division and not faithful implementations of +the Sieve of Erastosthenes.