From 7dfe3dbd1148ef5eae01aae68fb60d2b15bd0afe Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 5 Dec 2022 11:08:51 +0100 Subject: [PATCH] Update docs/src/basics/NonlinearProblem.md --- docs/src/basics/NonlinearProblem.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/basics/NonlinearProblem.md b/docs/src/basics/NonlinearProblem.md index fddedb353..1ba8738ad 100644 --- a/docs/src/basics/NonlinearProblem.md +++ b/docs/src/basics/NonlinearProblem.md @@ -6,7 +6,7 @@ NonlinearSolve.jl tackles three related types of nonlinear systems: 1. Interval rootfinding problems. I.e., find the ``t \in [t_0, t_f]`` such that ``f(t) = 0``. 2. Systems of nonlinear equations, i.e. find the ``u`` such that ``f(u) = 0``. -3. Steady state problems, i.e. find the `u` such that `u' = f(u,t)` has reached steady state, +3. Steady state problems, i.e. find the ``u`` such that ``u' = f(u,t)`` has reached steady state, i.e. ``0 = f(u, ∞)``. The first is for solving scalar rootfinding problems, i.e. finding a single number, and