@@ -411,7 +411,7 @@ LeftOrthAlgorithm{Kind}(alg::Alg) where {Kind, Alg <: AbstractAlgorithm} = LeftO
411411# Note: specific algorithm selection is handled by `left_orth_alg` in orthnull.jl
412412LeftOrthAlgorithm (alg:: AbstractAlgorithm ) = error (
413413 """
414- Unkown or invalid `left_orth` algorithm type `$(typeof (alg)) `.
414+ Unknown or invalid `left_orth` algorithm type `$(typeof (alg)) `.
415415 To register the algorithm type for `left_orth`, define
416416
417417 MatrixAlgebraKit.left_orth_alg(alg::CustomAlgorithm) = LeftOrthAlgorithm{kind}(alg)
@@ -440,7 +440,7 @@ RightOrthAlgorithm{Kind}(alg::Alg) where {Kind, Alg <: AbstractAlgorithm} = Righ
440440# Note: specific algorithm selection is handled by `right_orth_alg` in orthnull.jl
441441RightOrthAlgorithm (alg:: AbstractAlgorithm ) = error (
442442 """
443- Unkown or invalid `right_orth` algorithm type `$(typeof (alg)) `.
443+ Unknown or invalid `right_orth` algorithm type `$(typeof (alg)) `.
444444 To register the algorithm type for `right_orth`, define
445445
446446 MatrixAlgebraKit.right_orth_alg(alg::CustomAlgorithm) = RightOrthAlgorithm{kind}(alg)
@@ -469,7 +469,7 @@ LeftNullAlgorithm{Kind}(alg::Alg) where {Kind, Alg <: AbstractAlgorithm} = LeftN
469469# Note: specific algorithm selection is handled by `left_null_alg` in orthnull.jl
470470LeftNullAlgorithm (alg:: AbstractAlgorithm ) = error (
471471 """
472- Unkown or invalid `left_null` algorithm type `$(typeof (alg)) `.
472+ Unknown or invalid `left_null` algorithm type `$(typeof (alg)) `.
473473 To register the algorithm type for `left_null`, define
474474
475475 MatrixAlgebraKit.left_null_alg(alg::CustomAlgorithm) = LeftNullAlgorithm{kind}(alg)
@@ -497,7 +497,7 @@ RightNullAlgorithm{Kind}(alg::Alg) where {Kind, Alg <: AbstractAlgorithm} = Righ
497497# Note: specific algorithm selection is handled by `right_null_alg` in orthnull.jl
498498RightNullAlgorithm (alg:: AbstractAlgorithm ) = error (
499499 """
500- Unkown or invalid `right_null` algorithm type `$(typeof (alg)) `.
500+ Unknown or invalid `right_null` algorithm type `$(typeof (alg)) `.
501501 To register the algorithm type for `right_null`, define
502502
503503 MatrixAlgebraKit.right_null_alg(alg::CustomAlgorithm) = RightNullAlgorithm{kind}(alg)
0 commit comments