Skip to content

Commit 174e93f

Browse files
Update src/ArrayInterface.jl
1 parent f601f7e commit 174e93f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ArrayInterface.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function ismutable end
1212
Query whether a type is mutable or not, see
1313
https://github.com/JuliaDiffEq/RecursiveArrayTools.jl/issues/19.
1414
"""
15-
ismutable(x) = (@show x; ismutable(typeof(x)))
15+
ismutable(x) = ismutable(typeof(x))
1616

1717
ismutable(::Type{<:AbstractArray}) = true
1818
ismutable(::Type{<:Number}) = false

0 commit comments

Comments
 (0)