From 30cefbeafed7fc96d43f690a1c0e1562e96050a2 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 11 Sep 2023 01:27:46 -0400 Subject: [PATCH] Fix typo in codelink --- sus/fn/fn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sus/fn/fn.h b/sus/fn/fn.h index 007c4ed13..17966b1cd 100644 --- a/sus/fn/fn.h +++ b/sus/fn/fn.h @@ -74,9 +74,9 @@ namespace sus { /// func([](i32) { return 3; }); /// ``` /// -/// The same with [`FnMut`]($sus::fn::FnMut) +/// The same with [`FnMut`]($sus::fn::FnMut) being /// [type-erased]($sus::boxed::DynConcept) as [`DynFnMut`]( -/// $(sus::fn::DynFnMut) to avoid templates. The full type must be specified +/// $sus::fn::DynFnMut) to avoid templates. The full type must be specified /// when not working with templates, so [`NonVoid`]($sus::fn::NonVoid) can /// not be used. /// ```