Skip to content

Commit 69783ab

Browse files
authored
avoid unicode characters (#295)
1 parent a094f04 commit 69783ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/OffsetArrays.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ Base.parent(A::OffsetArray) = A.parent
296296
# See https://github.com/JuliaLang/julia/issues/37274 for the issue reported in Base
297297
# The fix https://github.com/JuliaLang/julia/pull/39404 should be available on v1.6
298298
# The following method is added on older Julia versions to ensure correct behavior for OffsetVectors
299-
if VERSION < v"1.6"
299+
if VERSION < v"1.6"
300300
@inline function Base.compute_linindex(A::OffsetVector, I::NTuple{N,Any}) where N
301301
IP = Base.fill_to_length(axes(A), Base.OneTo(1), Val(N))
302302
Base.compute_linindex(first(LinearIndices(A)), 1, IP, I)

0 commit comments

Comments
 (0)