From 0c75c76623cf5b914cdd177d1402faabf40c29bd Mon Sep 17 00:00:00 2001 From: Shuang Liu Date: Mon, 8 May 2023 10:22:05 -0700 Subject: [PATCH] Fix a typo. PiperOrigin-RevId: 530339315 --- mediapipe/calculators/core/flow_limiter_calculator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mediapipe/calculators/core/flow_limiter_calculator.cc b/mediapipe/calculators/core/flow_limiter_calculator.cc index 5b08f3af5..46e5bf6a3 100644 --- a/mediapipe/calculators/core/flow_limiter_calculator.cc +++ b/mediapipe/calculators/core/flow_limiter_calculator.cc @@ -42,7 +42,7 @@ constexpr char kOptionsTag[] = "OPTIONS"; // // Increasing `max_in_flight` to 2 or more can yield the better throughput // when the graph exhibits a high degree of pipeline parallelism. Decreasing -// `max_in_flight` to 0 can yield a better average latency, but at the cost of +// `max_in_queue` to 0 can yield a better average latency, but at the cost of // lower throughput (lower framerate) due to the time during which the graph // is idle awaiting the next input frame. //