From c1127c245b0ab6f0d45ab1c378e725121fe93ad4 Mon Sep 17 00:00:00 2001 From: Nil Geisweiller Date: Wed, 21 Dec 2016 22:57:59 +0200 Subject: [PATCH] Fix minor typo in comment --- libs/evoral/src/ControlList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/evoral/src/ControlList.cpp b/libs/evoral/src/ControlList.cpp index c665b69a5b..f952b9c519 100644 --- a/libs/evoral/src/ControlList.cpp +++ b/libs/evoral/src/ControlList.cpp @@ -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));