Skip to content

Commit b658c67

Browse files
committed
fix typo and test locally
1 parent a1a569a commit b658c67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/auxiliary.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ end
3131
end
3232

3333
@inline localoffset(d, I::Tuple{Int}, sz::Tuple{Int}) = 0
34-
@inline function localoffset(d, I::NTuple{N,Int}, sz::Tuple{N,Int}) where {N}
34+
@inline function localoffset(d, I::NTuple{N,Int}, sz::NTuple{N,Int}) where {N}
3535
offset = 0
3636
for i in 1:(I[1] - 1)
3737
offset += num_manhattan_points(d - i + 1, Base.tail(sz))

0 commit comments

Comments
 (0)