Skip to content

Commit faa0394

Browse files
authored
Fixing spelling mistake 'invertable'->'invertible' (#18)
1 parent 1f35d81 commit faa0394

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/properties.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -210,15 +210,15 @@ false
210210
is_orthogonal( L::AbstractOperator) = false
211211

212212
"""
213-
`is_invertable(A::AbstractOperator)`
213+
`is_invertible(A::AbstractOperator)`
214214
215-
Test whether `A` is easily invertable.
215+
Test whether `A` is easily invertible.
216216
217217
```julia
218218
julia> is_invertible(DFT(10))
219219
true
220220
221-
julia> is_invertable(MatrixOp(randn(3,4)))
221+
julia> is_invertible(MatrixOp(randn(3,4)))
222222
false
223223
224224
```
@@ -228,7 +228,7 @@ is_invertible( L::AbstractOperator) = false
228228
"""
229229
`is_full_row_rank(A::AbstractOperator)`
230230
231-
Test whether `A` is easily invertable.
231+
Test whether `A` is easily invertible.
232232
233233
```julia
234234
julia> is_full_row_rank(MatrixOp(randn(3,4)))
@@ -243,7 +243,7 @@ is_full_row_rank( L::AbstractOperator) = false
243243
"""
244244
`is_full_row_rank(A::AbstractOperator)`
245245
246-
Test whether `A` is easily invertable.
246+
Test whether `A` is easily invertible.
247247
248248
```julia
249249
julia> is_full_column_rank(MatrixOp(randn(4,3)))

0 commit comments

Comments
 (0)