diff options
author | schweikh <schweikh@FreeBSD.org> | 2003-01-01 18:49:04 +0000 |
---|---|---|
committer | schweikh <schweikh@FreeBSD.org> | 2003-01-01 18:49:04 +0000 |
commit | d3367c5f5d3ddcc6824d8f41c4cf179f9a5588f8 (patch) | |
tree | f412dafc7d29429919e8770cdefeb37441fc1299 /games/primes | |
parent | 718a7892bc6da2237db71c255051dd54a4e93a92 (diff) | |
download | FreeBSD-src-d3367c5f5d3ddcc6824d8f41c4cf179f9a5588f8.zip FreeBSD-src-d3367c5f5d3ddcc6824d8f41c4cf179f9a5588f8.tar.gz |
Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,
especially in troff files.
Diffstat (limited to 'games/primes')
-rw-r--r-- | games/primes/pattern.c | 2 | ||||
-rw-r--r-- | games/primes/primes.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/games/primes/pattern.c b/games/primes/pattern.c index dff1f4d..66b2dc8 100644 --- a/games/primes/pattern.c +++ b/games/primes/pattern.c @@ -50,7 +50,7 @@ static const char rcsid[] = * chongo <for a good prime call: 391581 * 2^216193 - 1> /\oo/\ * * To avoid excessive sieves for small factors, we use the table below to - * setup our sieve blocks. Each element represents a odd number starting + * setup our sieve blocks. Each element represents an odd number starting * with 1. All non-zero elements are factors of 3, 5, 7, 11 and 13. */ diff --git a/games/primes/primes.h b/games/primes/primes.h index f4a90fa..fde2b83 100644 --- a/games/primes/primes.h +++ b/games/primes/primes.h @@ -63,7 +63,7 @@ extern const ubig *const pr_limit; /* largest prime in the prime array */ /* * To avoid excessive sieves for small factors, we use the table below to - * setup our sieve blocks. Each element represents a odd number starting + * setup our sieve blocks. Each element represents an odd number starting * with 1. All non-zero elements are factors of 3, 5, 7, 11 and 13. */ extern const char pattern[]; |