Fix minor typos.

This commit is contained in:
sebcrozet 2018-10-16 09:47:04 +02:00 committed by Sébastien Crozet
parent 7a9cfef285
commit a3d363f397
2 changed files with 2 additions and 2 deletions

View File

@ -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:
///

View File

@ -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<R2, C2, SB>(&mut self, rhs: &Matrix<N, R2, C2, SB>)
where N: $Trait,
R2: Dim,