Skip to content

Commit e9833ed

Browse files
authored
Fix typo.
[skip ci]
1 parent 0dce8ca commit e9833ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/array.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function explain_eltype(@nospecialize(T), depth=0; maxdepth=10)
4545
msg = " "^depth * "$T is a mutable type\n"
4646
elseif hasfieldcount(T)
4747
msg = " "^depth * "$T is a struct that's not allocated inline\n"
48-
for U in fieldtypes(dt)
48+
for U in fieldtypes(T)
4949
if !Base.allocatedinline(U)
5050
msg *= explain_nonisbits(U, depth+1)
5151
end

0 commit comments

Comments
 (0)