Skip to content

Commit 651a928

Browse files
authored
Fixed typos in README.md (#207)
1 parent 5c2979e commit 651a928

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ See also the Python package [FDM](https://github.com/wesselb/fdm).
1717
#### FiniteDiff.jl vs FiniteDifferences.jl
1818
[FiniteDiff.jl](https://github.com/JuliaDiff/FiniteDiff.jl) and [FiniteDifferences.jl](https://github.com/JuliaDiff/FiniteDifferences.jl)
1919
are similar libraries: both calculate approximate derivatives numerically.
20-
You should definately use one or the other, rather than the legacy [Calculus.jl](https://github.com/JuliaMath/Calculus.jl) finite differencing, or reimplementing it yourself.
20+
You should definitely use one or the other, rather than the legacy [Calculus.jl](https://github.com/JuliaMath/Calculus.jl) finite differencing, or reimplementing it yourself.
2121
At some point in the future they might merge, or one might depend on the other.
2222
Right now here are the differences:
2323

24-
- FiniteDifferences.jl supports basically any type, where as FiniteDiff.jl supports only array-ish types
24+
- FiniteDifferences.jl supports basically any type, whereas FiniteDiff.jl supports only array-ish types
2525
- FiniteDifferences.jl supports higher order approximation and step size adaptation
2626
- FiniteDiff.jl supports caching and in-place computation
2727
- FiniteDiff.jl supports coloring vectors for efficient calculation of sparse Jacobians
@@ -81,7 +81,7 @@ julia> central_fdm(12, 2)(sin, 1) - (-sin(1))
8181
```
8282

8383
The functions `forward_fdm` and `backward_fdm` can be used to construct
84-
forward differences and backward differences respectively.
84+
forward differences and backward differences, respectively.
8585

8686
### Dealing with Singularities
8787

0 commit comments

Comments
 (0)