From 3ecd8e45c78fd862207bd4ffbe6988af306d1d2c Mon Sep 17 00:00:00 2001 From: adavier <30839200+adavier@users.noreply.github.com> Date: Mon, 18 May 2020 11:20:34 +0100 Subject: [PATCH] Update src/components/qualityOptions.js Co-authored-by: Julien Machiels --- src/components/qualityOptions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/qualityOptions.js b/src/components/qualityOptions.js index 898a1ac626..221e13d4ef 100644 --- a/src/components/qualityOptions.js +++ b/src/components/qualityOptions.js @@ -7,7 +7,7 @@ define(['globalize'], function (globalize) { var videoWidth = options.videoWidth; var videoHeight = options.videoHeight; - //If the aspect ratio is less than 16/9 (1.77), set the height as if it were pillerboxed. + // If the aspect ratio is less than 16/9 (1.77), set the width as if it were pillarboxed. // 4:3 1440x1080 -> 1920x1080 if (videoWidth / videoHeight < 16 / 9) { videoWidth = videoHeight * (16 / 9);