Skip to content

Commit 6604ea6

Browse files
committed
Fix typo
1 parent b7ba2c7 commit 6604ea6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/src/api/speedmapping.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# SppedMapping.jl
1+
# SpeedMapping.jl
22

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

77
```julia
88
using Pkg
9-
Pkg.add("SppedMapping")
10-
using SppedMapping, NonlinearSolve
9+
Pkg.add("SpeedMapping")
10+
using SpeedMapping, NonlinearSolve
1111
```
1212

1313
## Solver API
1414

1515
```@docs
16-
SppedMappingJL
16+
SpeedMappingJL
1717
```

docs/src/solvers/FixedPointSolvers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This can be written as:
1313
g(u) = f(u) - u = 0
1414
```
1515

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

0 commit comments

Comments
 (0)