diff --git a/src/base/blas.rs b/src/base/blas.rs index 2b7e7519..49797519 100644 --- a/src/base/blas.rs +++ b/src/base/blas.rs @@ -168,7 +168,7 @@ where /// The dot product between two vectors or matrices (seen as vectors). /// /// Note that this is **not** the matrix multiplication as in, e.g., numpy. For matrix - /// multiplication, use one of: `.gemm`, `mul_to`, `.mul`, `*`. + /// multiplication, use one of: `.gemm`, `.mul_to`, `.mul`, the `*` operator. /// /// # Examples: /// diff --git a/src/base/componentwise.rs b/src/base/componentwise.rs index ab398a9a..94934715 100644 --- a/src/base/componentwise.rs +++ b/src/base/componentwise.rs @@ -120,7 +120,7 @@ macro_rules! component_binop_impl( #[doc = $desc_mut] #[inline] - #[deprecated(note = "This is renamed using the `_assign` sufix instead of the `_mut` suffix.")] + #[deprecated(note = "This is renamed using the `_assign` suffix instead of the `_mut` suffix.")] pub fn $binop_mut(&mut self, rhs: &Matrix) where N: $Trait, R2: Dim,