From 89ed45b74c1e523ced1794f6a5faee36cfb8400d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Fuhrmann?= Date: Tue, 22 Oct 2024 09:19:15 +0200 Subject: [PATCH] fix typo; replace "functor" by "callable object" Googling "Callable object" leads to the right place in the julia docs and is easier to understand --- docs/src/basics/Preconditioners.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/basics/Preconditioners.md b/docs/src/basics/Preconditioners.md index d4f33354..9fa7e4c0 100644 --- a/docs/src/basics/Preconditioners.md +++ b/docs/src/basics/Preconditioners.md @@ -73,7 +73,7 @@ sol = solve(prob, KrylovJL_GMRES(precs = (A,p)->(Diagonal(A),I)) ) sol.u ``` This approach has the advantage that the specification of the preconditioner is possible without -the knowledge of a concrete matrix `A`. It also allows to specifiy the preconditioner via a functor struct: +the knowledge of a concrete matrix `A`. It also allows to specify the preconditioner via a callable object: ```@example precon2 using LinearSolve, LinearAlgebra