--- a/src/metaprogramming.rs Mon Dec 30 11:00:12 2024 -0500 +++ b/src/metaprogramming.rs Tue Dec 31 08:49:10 2024 -0500 @@ -3,8 +3,7 @@ */ /// Reference `x` if so indicated by the first parameter. -/// Typically to be used from another macro. See the implementation of -/// [power][crate::vectorspace::powerspace] and [product spaces][crate::vectorspace::productspace]. +/// Typically to be used from another macro. /// /// ```ignore /// maybe_ref!(ref, V) // ➡ &V @@ -27,8 +26,7 @@ /// Annotate `x` with a lifetime if the first parameter -/// Typically to be used from another macro. See the implementation of -/// [power][crate::vectorspace::powerspace] and [product spaces][crate::vectorspace::productspace]. +/// Typically to be used from another macro. /// /// ```ignore /// maybe_ref!(ref, &'a V) // ➡ &'a V