Fix minor typo in comment

This commit is contained in:
Nil Geisweiller 2016-12-21 22:57:59 +02:00 committed by Robin Gareus
parent 4c66e36b91
commit c1127c245b

View file

@ -1205,7 +1205,7 @@ ControlList::unlocked_eval (double x) const
return lval;
}
/* linear interpolation betweeen the two points */
/* linear interpolation between the two points */
fraction = (double) (x - lpos) / (double) (upos - lpos);
return lval + (fraction * (uval - lval));