diff --git a/src/interface/decompositions.jl b/src/interface/decompositions.jl index 8306d9ea..3a623b87 100644 --- a/src/interface/decompositions.jl +++ b/src/interface/decompositions.jl @@ -411,7 +411,7 @@ LeftOrthAlgorithm{Kind}(alg::Alg) where {Kind, Alg <: AbstractAlgorithm} = LeftO # Note: specific algorithm selection is handled by `left_orth_alg` in orthnull.jl LeftOrthAlgorithm(alg::AbstractAlgorithm) = error( """ - Unkown or invalid `left_orth` algorithm type `$(typeof(alg))`. + Unknown or invalid `left_orth` algorithm type `$(typeof(alg))`. To register the algorithm type for `left_orth`, define MatrixAlgebraKit.left_orth_alg(alg::CustomAlgorithm) = LeftOrthAlgorithm{kind}(alg) @@ -440,7 +440,7 @@ RightOrthAlgorithm{Kind}(alg::Alg) where {Kind, Alg <: AbstractAlgorithm} = Righ # Note: specific algorithm selection is handled by `right_orth_alg` in orthnull.jl RightOrthAlgorithm(alg::AbstractAlgorithm) = error( """ - Unkown or invalid `right_orth` algorithm type `$(typeof(alg))`. + Unknown or invalid `right_orth` algorithm type `$(typeof(alg))`. To register the algorithm type for `right_orth`, define MatrixAlgebraKit.right_orth_alg(alg::CustomAlgorithm) = RightOrthAlgorithm{kind}(alg) @@ -469,7 +469,7 @@ LeftNullAlgorithm{Kind}(alg::Alg) where {Kind, Alg <: AbstractAlgorithm} = LeftN # Note: specific algorithm selection is handled by `left_null_alg` in orthnull.jl LeftNullAlgorithm(alg::AbstractAlgorithm) = error( """ - Unkown or invalid `left_null` algorithm type `$(typeof(alg))`. + Unknown or invalid `left_null` algorithm type `$(typeof(alg))`. To register the algorithm type for `left_null`, define MatrixAlgebraKit.left_null_alg(alg::CustomAlgorithm) = LeftNullAlgorithm{kind}(alg) @@ -497,7 +497,7 @@ RightNullAlgorithm{Kind}(alg::Alg) where {Kind, Alg <: AbstractAlgorithm} = Righ # Note: specific algorithm selection is handled by `right_null_alg` in orthnull.jl RightNullAlgorithm(alg::AbstractAlgorithm) = error( """ - Unkown or invalid `right_null` algorithm type `$(typeof(alg))`. + Unknown or invalid `right_null` algorithm type `$(typeof(alg))`. To register the algorithm type for `right_null`, define MatrixAlgebraKit.right_null_alg(alg::CustomAlgorithm) = RightNullAlgorithm{kind}(alg) diff --git a/src/interface/orthnull.jl b/src/interface/orthnull.jl index 64acb509..b20a841d 100644 --- a/src/interface/orthnull.jl +++ b/src/interface/orthnull.jl @@ -429,7 +429,7 @@ See also [`LeftOrthAlgorithm`](@ref), [`left_orth`](@ref). """ left_orth_alg(alg::AbstractAlgorithm) = error( """ - Unkown or invalid `left_orth` algorithm type `$(typeof(alg))`. + Unknown or invalid `left_orth` algorithm type `$(typeof(alg))`. To register the algorithm type for `left_orth`, define MatrixAlgebraKit.left_orth_alg(alg::CustomAlgorithm) = LeftOrthAlgorithm{kind}(alg) @@ -464,7 +464,7 @@ See also [`RightOrthAlgorithm`](@ref), [`right_orth`](@ref). """ right_orth_alg(alg::AbstractAlgorithm) = error( """ - Unkown or invalid `right_orth` algorithm type `$(typeof(alg))`. + Unknown or invalid `right_orth` algorithm type `$(typeof(alg))`. To register the algorithm type for `right_orth`, define MatrixAlgebraKit.right_orth_alg(alg::CustomAlgorithm) = RightOrthAlgorithm{kind}(alg) @@ -499,7 +499,7 @@ See also [`LeftNullAlgorithm`](@ref), [`left_null`](@ref). """ left_null_alg(alg::AbstractAlgorithm) = error( """ - Unkown or invalid `left_null` algorithm type `$(typeof(alg))`. + Unknown or invalid `left_null` algorithm type `$(typeof(alg))`. To register the algorithm type for `left_null`, define MatrixAlgebraKit.left_null_alg(alg::CustomAlgorithm) = LeftNullAlgorithm{kind}(alg) @@ -533,7 +533,7 @@ See also [`RightNullAlgorithm`](@ref), [`right_null`](@ref). """ right_null_alg(alg::AbstractAlgorithm) = error( """ - Unkown or invalid `right_null` algorithm type `$(typeof(alg))`. + Unknown or invalid `right_null` algorithm type `$(typeof(alg))`. To register the algorithm type for `right_null`, define MatrixAlgebraKit.right_null_alg(alg::CustomAlgorithm) = RightNullAlgorithm{kind}(alg)