From fc1c66a34735ac9330cfa7194dcbd734f95386db Mon Sep 17 00:00:00 2001 From: Vihaashetty Date: Tue, 7 Dec 2021 09:39:18 +0530 Subject: [PATCH] [#172] Fix: gramatical error in comment. --- .../io/prestosql/execution/executor/MultilevelSplitQueue.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/presto-main/src/main/java/io/prestosql/execution/executor/MultilevelSplitQueue.java b/presto-main/src/main/java/io/prestosql/execution/executor/MultilevelSplitQueue.java index 5d7c291ef..76bc1dca5 100644 --- a/presto-main/src/main/java/io/prestosql/execution/executor/MultilevelSplitQueue.java +++ b/presto-main/src/main/java/io/prestosql/execution/executor/MultilevelSplitQueue.java @@ -154,7 +154,7 @@ public class MultilevelSplitQueue * Presto attempts to give each level a target amount of scheduled time, which is configurable * using levelTimeMultiplier. *

- * This function selects the level that has the the lowest ratio of actual to the target time + * This function selects the level that has the lowest ratio of actual to the target time * with the objective of minimizing deviation from the target scheduled time. From this level, * we pick the split with the lowest priority. */