src/metaprogramming.rs

branch
dev
changeset 75
e9f4550cfa18
parent 59
9226980e45a7
--- 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

mercurial