diff options
author | reactormonk <hafnersimon@gmail.com> | 2016-02-29 12:59:05 +0100 |
---|---|---|
committer | reactormonk <hafnersimon@gmail.com> | 2016-02-29 12:59:05 +0100 |
commit | ba16d423e0d0f95851a032f7d5705c244d8f6604 (patch) | |
tree | ef91d7dd981d91b4632cc1c9a0069d28a75464ce /lib/pure/poly.nim | |
parent | bd95bf58bfab31034db346d946e8e3b6bb5d19cc (diff) | |
parent | d9cb85c2d81a447130307d0004b0ef515f3ff241 (diff) | |
download | Nim-ba16d423e0d0f95851a032f7d5705c244d8f6604.tar.gz |
Merge pull request #3913 from FedericoCeratto/devel
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 |