From cbbf2970c18ba701888f78ec17686405553bb20a Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Wed, 27 Apr 2022 23:16:09 -0700 Subject: [PATCH] Fix typo --- webroot/js/components/latencyCompensator.js | 2 +- webroot/js/metrics/playback.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/webroot/js/components/latencyCompensator.js b/webroot/js/components/latencyCompensator.js index 411182a31..12d26a7c4 100644 --- a/webroot/js/components/latencyCompensator.js +++ b/webroot/js/components/latencyCompensator.js @@ -402,7 +402,7 @@ function getCurrentlyPlayingSegment(tech) { var segment; - // Itinerate trough available segments and get first within which snapshot_time is + // Iterate trough available segments and get first within which snapshot_time is for (var i = 0, l = target_media.segments.length; i < l; i++) { // Note: segment.end may be undefined or is not properly set if (snapshot_time < target_media.segments[i].end) { diff --git a/webroot/js/metrics/playback.js b/webroot/js/metrics/playback.js index 82103509c..2bd45c6ae 100644 --- a/webroot/js/metrics/playback.js +++ b/webroot/js/metrics/playback.js @@ -253,7 +253,7 @@ function getCurrentlyPlayingSegment(tech, old_segment = null) { var segment; var segment_time; - // Itinerate trough available segments and get first within which snapshot_time is + // Iterate trough available segments and get first within which snapshot_time is for (var i = 0, l = target_media.segments.length; i < l; i++) { // Note: segment.end may be undefined or is not properly set if (snapshot_time < target_media.segments[i].end) {