Skip to content

Commit 8934e3f

Browse files
try to fix string issue
1 parent a75a045 commit 8934e3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CircularArrayBuffers.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function wrap_index(idx::Int, n::Int)
9898
elseif idx <= 2n
9999
return idx - n
100100
else
101-
@warn "oops! idx $(idx) > 2n $(2n)"
101+
@warn "oops! idx " * idx * " > 2n " * 2n
102102
return idx - n
103103
end
104104
end

0 commit comments

Comments
 (0)