Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documenter 1.0 upgrade #697

Merged
merged 8 commits into from
Oct 7, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update docs/src/tutorials/bvp_example.md
  • Loading branch information
ChrisRackauckas authored Oct 7, 2023
commit cbef0c652ff520959867fa528827212328cea9a0
2 changes: 1 addition & 1 deletion docs/src/tutorials/bvp_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Defining a similar problem as `TwoPointBVProblem` is shown in the following exam
function bc2a!(resid_a, u_a, p) # u_a is at the beginning of the time span
resid_a[1] = u_a[1] + pi / 2 # the solution at the beginning of the time span should be -pi/2
end
function bc2b!(resid_a, u_b, p) # u_b is at the ending of the time span
function bc2b!(resid_b, u_b, p) # u_b is at the ending of the time span
resid_b[1] = u_b[1] - pi / 2 # the solution at the end of the time span should be pi/2
end
bvp2 = TwoPointBVProblem(simplependulum!, (bc2a!, bc2b!), [pi / 2, pi / 2], tspan;
Expand Down