Skip to content

Commit

Permalink
Fix typo.
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
maleadt authored Feb 8, 2023
1 parent 0dce8ca commit e9833ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/array.jl
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function explain_eltype(@nospecialize(T), depth=0; maxdepth=10)
msg = " "^depth * "$T is a mutable type\n"
elseif hasfieldcount(T)
msg = " "^depth * "$T is a struct that's not allocated inline\n"
for U in fieldtypes(dt)
for U in fieldtypes(T)
if !Base.allocatedinline(U)
msg *= explain_nonisbits(U, depth+1)
end
Expand Down

0 comments on commit e9833ed

Please sign in to comment.