Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaqz committed Sep 28, 2023
1 parent dd09167 commit 5074b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Extents.jl
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Base.length(ext::Extent) = length(bounds(ext))
Base.iterate(ext::Extent, args...) = iterate(bounds(ext), args...)

function Base.isapprox(a::Extent{K1}, b::Extent{K2}; kw...) where {K1,K2}
_keys_match(a, b) || return false
_check_keys_match(a, b) || return false
values_match = map(K1) do k
bounds_a = a[k]
bounds_b = b[k]
Expand Down

0 comments on commit 5074b51

Please sign in to comment.