From 9ccead548ebc3d61a83e3357bfee88a9fc45efa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johanna=20S=C3=B6rng=C3=A5rd?= Date: Fri, 31 May 2024 10:44:30 +0200 Subject: [PATCH] Format cache module docstring --- src/cache/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cache/mod.rs b/src/cache/mod.rs index b5e5e8f..4f222c0 100644 --- a/src/cache/mod.rs +++ b/src/cache/mod.rs @@ -1,5 +1,5 @@ -//! This module contains the implementation of the type [`Primes`] (and related iterators), which functions as a cache of prime numbers -//! for related computations. +//! This module contains the implementation of the type [`Primes`] (and related iterators), +//! which functions as a cache of prime numbers for related computations. mod prime_factors; mod primes_into_iter;