From 51ee94a04867b7b84aeaa3593e8c0611bb146873 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20S=C3=B6rng=C3=A5rd?= Date: Wed, 8 May 2024 16:18:35 +0200 Subject: [PATCH] Split comment in docstring into two lines --- src/generation.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/generation.rs b/src/generation.rs index 9d29955..33cdfbe 100644 --- a/src/generation.rs +++ b/src/generation.rs @@ -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))); /// ``` ///