diff --git a/doc/crypto/BN_generate_prime.pod b/doc/crypto/BN_generate_prime.pod
index 4aa0725955..c2cc151cf6 100644
--- a/doc/crypto/BN_generate_prime.pod
+++ b/doc/crypto/BN_generate_prime.pod
@@ -62,18 +62,12 @@ prime. The following tests are performed until one of them shows that
B is composite; if B passes all these tests, it is considered
prime.
-=over 4
-
-=item *
-
BN_is_prime_fasttest(), when called with B,
first attempts trial division by a number of small primes;
if no divisors are found by this test and B is not B,
B is called.
If B, this test is skipped.
-=item *
-
Both BN_is_prime() and BN_is_prime_fasttest() perform a Miller-Rabin
probabilistic primality test with B iterations. If
B, a number of iterations is used that
@@ -87,7 +81,6 @@ BN_is_prime_fasttest(), B is a second pre-allocated B or
B (lacking this parameter, BN_is_prime() always has to allocate
an additional B).
-
=head1 RETURN VALUES
BN_generate_prime() returns the prime number on success, B otherwise.