Skip to content

Commit

Permalink
fix parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Oct 4, 2017
1 parent e8c6014 commit e9f6612
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function solve{uType,tType,isinplace,AlgType<:ODEjlAlgorithm}(
if (tspan[1]:saveat:tspan[end])[end] == tspan[end]
saveat_vec = convert(Vector{tType},collect(tType,tspan[1]+saveat:saveat:tspan[end]))
else
saveat_vec = convert(Vector{tType},(collect(tType,tspan[1]+saveat:saveat:(tspan[end]-saveat)))
saveat_vec = convert(Vector{tType},collect(tType,tspan[1]+saveat:saveat:(tspan[end]-saveat)))
end
else
saveat_vec = convert(Vector{tType}, collect(saveat))
Expand Down

0 comments on commit e9f6612

Please sign in to comment.