Fix typo in axpy documentation

This commit is contained in:
Greizgh 2019-02-05 19:22:17 +01:00
parent b46cf75996
commit 0f09f2a58c
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ where
{
/// Computes `self = a * x + b * self`.
///
/// If be is zero, `self` is never read from.
/// If `b` is zero, `self` is never read from.
///
/// # Examples:
///