From c77a0872fc4cac33edc8a1587776087e9ba49bb8 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Mon, 25 Oct 2021 23:23:34 +0900 Subject: [PATCH] Fix typo in dom.js untill -> until --- src/dom/dom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dom/dom.js b/src/dom/dom.js index 457df1edf1..4a8d2549d5 100644 --- a/src/dom/dom.js +++ b/src/dom/dom.js @@ -2761,7 +2761,7 @@ p5.MediaElement.prototype._setupAutoplayFailDetection = function() { * videoElement = createVideo(['assets/small.mp4'], onVideoLoad); * } * function onVideoLoad() { - * // The media will not play untill some explicitly triggered. + * // The media will not play until some explicitly triggered. * videoElement.autoplay(false); * videoElement.volume(0); * videoElement.size(100, 100);