Fri, 06 Dec 2024 14:59:34 -0500
typofix
src/mapping.rs | file | annotate | diff | comparison | revisions |
--- a/src/mapping.rs Fri Dec 06 13:06:22 2024 -0500 +++ b/src/mapping.rs Fri Dec 06 14:59:34 2024 -0500 @@ -85,7 +85,7 @@ /// A differentiable mapping from `Domain` to [`Mapping::Codomain`], with differentials /// `Differential`. /// -/// This is automatically implemented when the relevant [`Differentiate`] are implemented. +/// This is automatically implemented when the relevant [`Differentiable`] are implemented. pub trait DifferentiableMapping<Domain> : Mapping<Domain> + Differentiable<Domain, Derivative=Self::DerivativeDomain>