Skip to content

Commit

Permalink
try to fix string issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremiahpslewis committed Mar 27, 2024
1 parent a75a045 commit 8934e3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CircularArrayBuffers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ function wrap_index(idx::Int, n::Int)
elseif idx <= 2n
return idx - n
else
@warn "oops! idx $(idx) > 2n $(2n)"
@warn "oops! idx " * idx * " > 2n " * 2n
return idx - n
end
end
Expand Down

0 comments on commit 8934e3f

Please sign in to comment.