From b33aa4468953713691cfc5519492034c74f71a5b Mon Sep 17 00:00:00 2001 From: Oscar Smith Date: Sat, 23 Nov 2024 15:06:29 -0500 Subject: [PATCH] fix comment --- src/utils.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.jl b/src/utils.jl index 20d16596ed..da7affdb81 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -656,7 +656,7 @@ end isleaflike(x) = Functors.isleaf(x) -# these are, essentially, Tuple{Vararg{<:T}} using the special property +# these are, essentially, Tuple{Vararg{T}} using the special property # of tuples that they are type covariant. Using <: here causes warning or error isleaflike(::Tuple{Vararg{Number}}) = true isleaflike(::Tuple{Vararg{AbstractArray{<:Number}}}) = true