From: ANDI FAUZAN HEDIANTORO <144610468+fauzan171@users.noreply.github.com> Date: Sun, 7 Jun 2026 17:53:20 +0000 (+0700) Subject: Fix `falsie` → `falsely` typo in `js/src/util/index.js` comment (#42478) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3372d493f0524357dfdac260e4b9de40bd7547e;p=thirdparty%2Fbootstrap.git Fix `falsie` → `falsely` typo in `js/src/util/index.js` comment (#42478) --- diff --git a/js/src/util/index.js b/js/src/util/index.js index c271cc5368..016cb22b5a 100644 --- a/js/src/util/index.js +++ b/js/src/util/index.js @@ -102,7 +102,7 @@ const isVisible = element => { } const elementIsVisible = getComputedStyle(element).getPropertyValue('visibility') === 'visible' - // Handle `details` element as its content may falsie appear visible when it is closed + // Handle `details` element as its content may falsely appear visible when it is closed const closedDetails = element.closest('details:not([open])') if (!closedDetails) {