summaryrefslogtreecommitdiff
path: root/libs/evoral
diff options
context:
space:
mode:
authorNil Geisweiller <ngeiswei@gmail.com>2016-12-21 22:57:59 +0200
committerRobin Gareus <robin@gareus.org>2016-12-21 23:09:40 +0100
commitc1127c245b0ab6f0d45ab1c378e725121fe93ad4 (patch)
tree7c5c7a420059e480436947cba18b7b7cf75861b1 /libs/evoral
parent4c66e36b91df4e49effef77ad01c905ccedff730 (diff)
Fix minor typo in comment
Diffstat (limited to 'libs/evoral')
-rw-r--r--libs/evoral/src/ControlList.cpp2
1 files changed, 1 insertions, 1 deletions
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));