Fix a typo. While 'iff' might make sense in a mathematics-related text,

'if and only iff' does not.

PR:		33242
Submitted by:	Eric Yu <ericyu@mail2000.com.tw>
This commit is contained in:
Peter Pentchev 2001-12-27 13:33:10 +00:00
parent 6361070e82
commit ca33a43ede
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=88530

View File

@ -82,7 +82,7 @@ static const char rcsid[] =
*
* We only sieve the odd numbers. The base of our sieve windows are always
* odd. If the base of table is 1, table[i] represents 2*i-1. After the
* sieve, table[i] == 1 if and only iff 2*i-1 is prime.
* sieve, table[i] == 1 if and only if 2*i-1 is prime.
*
* We make TABSIZE large to reduce the overhead of inner loop setup.
*/