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

Docs: Fix orderd list indentation #586

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions doc/shared/sundials/SUNContext.rst
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ Applications that need to have *concurrently initialized* SUNDIALS simulations
need to take care to understand the following:

#. A :c:type:`SUNContext` object must only be associated with *one* SUNDIALS simulation
(a solver object and its associated vectors etc.) at a time.
(a solver object and its associated vectors etc.) at a time.

- Concurrently initialized is not the same as concurrently executing. Even if
two SUNDIALS simulations execute sequentially, if both are initialized
Expand All @@ -199,7 +199,7 @@ need to take care to understand the following:
destroyed.

#. The creation and destruction of a :c:type:`SUNContext` object is cheap, especially
in comparison to the cost of creating/destroying a SUNDIALS solver object.
in comparison to the cost of creating/destroying a SUNDIALS solver object.

The following (incomplete) code examples demonstrate these points using CVODE as
the example SUNDIALS package.
Expand Down
Loading