Skip to content

Commit 5569c5e

Browse files
committed
fix typo
1 parent da7a240 commit 5569c5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "ArrayInterface"
22
uuid = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
3-
version = "6.0.13"
3+
version = "6.0.14"
44

55
[deps]
66
ArrayInterfaceCore = "30b0a656-2188-435a-8636-2ec0e6a096e2"

src/axes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ axes(A::SubArray) = _sub_axes(parent(A), A.indices)
119119
for j in 1:ndims(I_i)
120120
push!(t.args, :(getfield($(axsi), $j)))
121121
end
122-
push!(out.args, Expr(:(=), axsi, :(getfield(axes(getfield(inds, $i))))))
122+
push!(out.args, Expr(:(=), axsi, :(axes(getfield(inds, $i)))))
123123
end
124124
end
125125
push!(out.args, t)

0 commit comments

Comments
 (0)