Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Dec 22, 2023
1 parent b7ba2c7 commit 6604ea6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions docs/src/api/speedmapping.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# SppedMapping.jl
# SpeedMapping.jl

This is a extension for importing solvers from SppedMapping.jl into the SciML
This is a extension for importing solvers from SpeedMapping.jl into the SciML
interface. Note that these solvers do not come by default, and thus one needs to install
the package before using these solvers:

```julia
using Pkg
Pkg.add("SppedMapping")
using SppedMapping, NonlinearSolve
Pkg.add("SpeedMapping")
using SpeedMapping, NonlinearSolve
```

## Solver API

```@docs
SppedMappingJL
SpeedMappingJL
```
2 changes: 1 addition & 1 deletion docs/src/solvers/FixedPointSolvers.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This can be written as:
g(u) = f(u) - u = 0
```

Where ``g(u) = 0`` is a root finding problem. Note that we can use any root finding
``g(u) = 0`` is a root finding problem. Note that we can use any root finding
algorithm to solve this problem. However, this is often not the most efficient way to
solve a fixed point problem. We provide a few algorithms available via extensions that
are more efficient for fixed point problems.
Expand Down

0 comments on commit 6604ea6

Please sign in to comment.