Merge pull request #537 from greizgh/fix-axpy-typo

Fix typo in axpy documentation
This commit is contained in:
Sébastien Crozet 2019-03-16 10:06:35 +01:00 committed by GitHub
commit f916dae6ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -378,7 +378,7 @@ where
{ {
/// Computes `self = a * x + b * self`. /// 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: /// # Examples:
/// ///