Skip to content

Commit 32419d4

Browse files
committed
Spaces around #Example headings
1 parent cefd395 commit 32419d4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/wrapper.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,9 @@ impl<const N: usize> Primes<N> {
165165
/// If `n` is larger than or equal to the largest prime in `self` this returns `None`.
166166
///
167167
/// Uses a binary search.
168+
///
168169
/// # Example
170+
///
169171
/// ```
170172
/// # use const_primes::Primes;
171173
/// const CACHE: Primes<100> = Primes::new();
@@ -283,6 +285,7 @@ impl<const N: usize> Primes<N> {
283285
/// Returns a reference to the last prime in `self`. This is also the largest prime in `self`.
284286
///
285287
/// # Example
288+
///
286289
/// Basic usage
287290
/// ```
288291
/// # use const_primes::Primes;
@@ -301,6 +304,7 @@ impl<const N: usize> Primes<N> {
301304
/// Returns the number of primes in `self`.
302305
///
303306
/// # Example
307+
///
304308
/// ```
305309
/// # use const_primes::Primes;
306310
/// const PRIMES: Primes<5> = Primes::new();

0 commit comments

Comments
 (0)