aboutsummaryrefslogtreecommitdiff
path: root/js/tests/unit
diff options
context:
space:
mode:
authorMarc Wrobel <[email protected]>2022-07-18 10:02:41 +0200
committerMark Otto <[email protected]>2022-07-18 13:30:29 -0700
commit705d6857ad262c0f1e8e85645a7a0df7b1e14d84 (patch)
tree4fce08abb7cee0598626d7c923d9c761c4567eef /js/tests/unit
parent154916ca2e9160cc17c21c7a8e5938832ab186b3 (diff)
downloadbootstrap-705d6857ad262c0f1e8e85645a7a0df7b1e14d84.tar.xz
bootstrap-705d6857ad262c0f1e8e85645a7a0df7b1e14d84.zip
Fix typos in code (#36763)
Shoutout is correct but has been replaced by its more common form : Shout-out (https://www.merriam-webster.com/dictionary/shout-out).
Diffstat (limited to 'js/tests/unit')
-rw-r--r--js/tests/unit/dom/selector-engine.spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tests/unit/dom/selector-engine.spec.js b/js/tests/unit/dom/selector-engine.spec.js
index 901aa0e3a..0245896c6 100644
--- a/js/tests/unit/dom/selector-engine.spec.js
+++ b/js/tests/unit/dom/selector-engine.spec.js
@@ -21,7 +21,7 @@ describe('SelectorEngine', () => {
expect(SelectorEngine.find('div', fixtureEl)).toEqual([div])
})
- it('should find elements globaly', () => {
+ it('should find elements globally', () => {
fixtureEl.innerHTML = '<div id="test"></div>'
const div = fixtureEl.querySelector('#test')