Skip to content

Commit

Permalink
Split comment in docstring into two lines
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard committed May 8, 2024
1 parent a917425 commit 51ee94a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/generation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,8 @@ macro_rules! primes_segment {
/// ```
/// # use const_primes::{primes_geq, GenerationError};
/// const PRIMES: Result<[u64; 3], GenerationError> = primes_geq::<3, 3>(5);
/// // The sieve is unable to determine the prime status of 9, since that is the same or larger than `MEM`^2.
/// // The sieve is unable to determine the prime status of 9,
/// // since that is the same or larger than `MEM`^2.
/// assert_eq!(PRIMES, Err(GenerationError::SieveOverrun(9)));
/// ```
///
Expand Down

0 comments on commit 51ee94a

Please sign in to comment.