diff options
author | Federico Ceratto <federico.ceratto@gmail.com> | 2016-02-29 11:25:51 +0000 |
---|---|---|
committer | Federico Ceratto <federico.ceratto@gmail.com> | 2016-02-29 11:25:51 +0000 |
commit | d9cb85c2d81a447130307d0004b0ef515f3ff241 (patch) | |
tree | ef91d7dd981d91b4632cc1c9a0069d28a75464ce /lib/pure/poly.nim | |
parent | bd95bf58bfab31034db346d946e8e3b6bb5d19cc (diff) | |
download | Nim-d9cb85c2d81a447130307d0004b0ef515f3ff241.tar.gz |
Spellcheck
Diffstat (limited to 'lib/pure/poly.nim')
-rw-r--r-- | lib/pure/poly.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/poly.nim b/lib/pure/poly.nim index b20e9f9d0..e286c5d17 100644 --- a/lib/pure/poly.nim +++ b/lib/pure/poly.nim @@ -344,7 +344,7 @@ proc roots*(p:Poly,tol=1.0e-9,zerotol=1.0e-6,mergetol=1.0e-12,maxiter=1000):seq[ ## `tol` is the tolerance used to break searching for each root when reached. ## `zerotol` is the tolerance, which is 'close enough' to zero to be considered a root ## and is used to find roots for curves that only 'touch' the x-axis. - ## `mergetol` is the tolerance, of which two x-values are considered beeing the same root. + ## `mergetol` is the tolerance, of which two x-values are considered being the same root. ## `maxiter` can be used to limit the number of iterations for each root. ## Returns a (possibly empty) sorted sequence with the solutions. var deg=p.degree |