all: fix spelling and typos

This commit is contained in:
Dan Kortschak
2022-03-14 16:37:03 +10:30
parent 7a7ecd314e
commit d8ad7756b6
32 changed files with 42 additions and 42 deletions

View File

@@ -87,7 +87,7 @@ var Central = Formula{
Step: 6e-6,
}
// Central2nd represents a secord-order accurate centered approximation
// Central2nd represents a second-order accurate centered approximation
// to the second derivative.
var Central2nd = Formula{
Stencil: []Point{{Loc: -1, Coeff: 1}, {Loc: 0, Coeff: -2}, {Loc: 1, Coeff: 1}},