diff options
author | def <dennis@felsin9.de> | 2015-01-28 02:22:23 +0100 |
---|---|---|
committer | def <dennis@felsin9.de> | 2015-01-28 02:31:26 +0100 |
commit | fa1e209b6333f061351d7561ee966fb817b3e0d9 (patch) | |
tree | 3e87c341037efd5127ef7fe19be458ce7617f324 /lib/pure/poly.nim | |
parent | 46cf40c40d4a13cd1fed0c4739e07f9b5a73454b (diff) | |
download | Nim-fa1e209b6333f061351d7561ee966fb817b3e0d9.tar.gz |
Typo
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 286e5a8fd..58dcdc1ad 100644 --- a/lib/pure/poly.nim +++ b/lib/pure/poly.nim @@ -58,7 +58,7 @@ proc `[]=` *(p:var Poly;idx:int,v:float)= iterator items*(p:Poly):float= - ## Iterates through the corfficients of the polynomial. + ## Iterates through the coefficients of the polynomial. var i=p.degree while i>=0: yield p[i] |