@@ -176,7 +176,7 @@ TransformFactorization{T}(grid, ::Nothing, iplan) where T = TransformFactorizati
176176 TransformFactorization(grid, nothing, iplan)
177177
178178associates a planned inverse transform with a grid. That is, if `F` is a `TransformFactorization`, then
179- `F \\ f` is equivalent to `F.iplan \ f[F.grid]`.
179+ `F \\ f` is equivalent to `F.iplan \\ f[F.grid]`.
180180"""
181181TransformFactorization (grid, :: Nothing , iplan) = TransformFactorization {promote_type(eltype(eltype(grid)),eltype(iplan))} (grid, nothing , iplan)
182182
209209 ProjectionFactorization(F, inds)
210210
211211projects a factorization to a subset of coefficients. That is, if `P` is a `ProjectionFactorization`
212- then `P \ f` is equivalent to `(F \ f)[inds]`
212+ then `P \\ f` is equivalent to `(F \ \ f)[inds]`
213213"""
214214struct ProjectionFactorization{T, FAC<: Factorization{T} , INDS} <: Factorization{T}
215215 F:: FAC
@@ -227,7 +227,7 @@ _factorize(::SubBasisLayout, L) = ProjectionFactorization(factorize(parent(L)),
227227 MappedFactorization(F, map)
228228
229229remaps a factorization to a different domain. That is, if `M` is a `MappedFactorization`
230- then `M \ f` is equivalent to `F \ f[map]`
230+ then `M \\ f` is equivalent to `F \ \ f[map]`
231231"""
232232struct MappedFactorization{T, FAC<: Factorization{T} , MAP} <: Factorization{T}
233233 F:: FAC
0 commit comments