From 756faa637a45863a2d1f11ba254d990d6a8e2ff4 Mon Sep 17 00:00:00 2001 From: "Steven G. Johnson" Date: Thu, 7 Jul 2016 18:38:00 -0400 Subject: [PATCH] typo Fix typo noted by @tkelman (https://github.com/JuliaLang/julia/pull/16702#discussion_r69987863) --- base/linalg/factorization.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/linalg/factorization.jl b/base/linalg/factorization.jl index 5b6aade370330..49254d2638dc1 100644 --- a/base/linalg/factorization.jl +++ b/base/linalg/factorization.jl @@ -58,7 +58,7 @@ the result. The argument `A` should *not* be a matrix. Rather, instead of matrices it should be a factorization object (e.g. produced by [`factorize`](:func:`factorize`) or [`cholfact`](:func:`cholfact`)). The reason for this is that factorization itself is both expensive and typically allocates memory -(although it can also be done in-place via, e.g., [`lufact`](:func:`lufact`)), +(although it can also be done in-place via, e.g., [`lufact!`](:func:`lufact!`)), and performance-critical situations requiring `A_ldiv_B!` usually also require fine-grained control over the factorization of `A`. """