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. /// ```