From f82cdf7c9d3f3a0553d29a81b629598bdac43ddd Mon Sep 17 00:00:00 2001 From: RussellBentley Date: Thu, 10 Oct 2024 11:24:10 -0400 Subject: [PATCH] Fix doc error in plan by wrapping hyperlink --- fftw/src/plan.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fftw/src/plan.rs b/fftw/src/plan.rs index 7cf4cd56..9047b1fc 100644 --- a/fftw/src/plan.rs +++ b/fftw/src/plan.rs @@ -1,7 +1,7 @@ //! Plan in FFTW //! -//! See also [Using Plans] in the original document -//! [Using Plans]: http://www.fftw.org/fftw3_doc/Using-Plans.html +//! See also [Using Plans](http://www.fftw.org/fftw3_doc/Using-Plans.html) +//! in the original document use crate::array::{alignment_of, AlignedAllocable, AlignedVec, Alignment}; use crate::error::*;