Skip to content

Commit

Permalink
Merge pull request SciML#2474 from vavrines/master
Browse files Browse the repository at this point in the history
Fix typo in common_first_steps.jl
  • Loading branch information
ChrisRackauckas authored Sep 20, 2024
2 parents f17e149 + 9d53201 commit e6ddc71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/common_first_steps.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function first_steps(name, solver)
function lorenz!(du, u, p, t)
du[1] = 10.0 * (u[2] - u[1])
u[2] = u[1] * (28.0 - u[3]) - u[2]
du[2] = u[1] * (28.0 - u[3]) - u[2]
du[3] = u[1] * u[2] - (8 / 3) * u[3]
end
u0 = [1.0; 0.0; 0.0]
Expand Down

0 comments on commit e6ddc71

Please sign in to comment.