Skip to content

Commit 3ce3c24

Browse files
committed
Update bases.jl
1 parent 45a0a0b commit 3ce3c24

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bases/bases.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ TransformFactorization{T}(grid, ::Nothing, iplan) where T = TransformFactorizati
176176
TransformFactorization(grid, nothing, iplan)
177177
178178
associates 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
"""
181181
TransformFactorization(grid, ::Nothing, iplan) = TransformFactorization{promote_type(eltype(eltype(grid)),eltype(iplan))}(grid, nothing, iplan)
182182

@@ -209,7 +209,7 @@ end
209209
ProjectionFactorization(F, inds)
210210
211211
projects 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
"""
214214
struct 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
229229
remaps 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
"""
232232
struct MappedFactorization{T, FAC<:Factorization{T}, MAP} <: Factorization{T}
233233
F::FAC

0 commit comments

Comments
 (0)