This commit is contained in:
def
2015-01-28 02:22:23 +01:00
parent 46cf40c40d
commit fa1e209b63

View File

@@ -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]