diff --git a/src/base/ops.rs b/src/base/ops.rs index 50a35b32..3b89d3e2 100644 --- a/src/base/ops.rs +++ b/src/base/ops.rs @@ -682,7 +682,8 @@ where #[inline] #[must_use] - pub fn mul_tr(&self, rhs: &Matrix) -> OMatrix + /// Equivalent to `self * rhs.transpose()`. + pub fn mul_tr(&self, rhs: &Matrix) -> OMatrix where SB: Storage, DefaultAllocator: Allocator,