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=bbc3dd5d3a23df419efa5722792e5ac72accdd1b;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 86654616ef..a07602c199 100644 --- a/js/src/util/index.js +++ b/js/src/util/index.js @@ -97,7 +97,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) {