]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix typos. (#29178)
authorXhmikosR <xhmikosr@gmail.com>
Wed, 31 Jul 2019 13:14:21 +0000 (16:14 +0300)
committerGitHub <noreply@github.com>
Wed, 31 Jul 2019 13:14:21 +0000 (16:14 +0300)
js/src/alert/alert.spec.js
js/src/modal/modal.spec.js
js/src/tab/tab.spec.js

index 05e3dbd686bc58a6052024197da1eee579b0b2d9..61d656bd0c96151e2f29a16847b8150646747df8 100644 (file)
@@ -20,7 +20,7 @@ describe('Alert', () => {
   })
 
   describe('data-api', () => {
-    it('should close an alert without instanciate it manually', () => {
+    it('should close an alert without instantiate it manually', () => {
       fixtureEl.innerHTML = [
         '<div class="alert">',
         '  <button type="button" data-dismiss="alert">x</button>',
@@ -33,7 +33,7 @@ describe('Alert', () => {
       expect(makeArray(document.querySelectorAll('.alert')).length).toEqual(0)
     })
 
-    it('should close an alert without instanciate it manually with the parent selector', () => {
+    it('should close an alert without instantiate it manually with the parent selector', () => {
       fixtureEl.innerHTML = [
         '<div class="alert">',
         '  <button type="button" data-target=".alert" data-dismiss="alert">x</button>',
index 5623d174c68701ac8a396a333d833beba8b6b6bb..292f61f8bc241e177ecf7a9211036b2334acdb94 100644 (file)
@@ -354,7 +354,7 @@ describe('Modal', () => {
       modal.show()
     })
 
-    it('should close modal when a click occured on data-dismiss="modal"', done => {
+    it('should close modal when a click occurred on data-dismiss="modal"', done => {
       fixtureEl.innerHTML = [
         '<div class="modal fade">',
         '  <div class="modal-dialog">',
index 9530f3def10d293a644b679ecec702b4642d8ded..0a678e38ee2d9647b39d1e6a17701b5d7f7a3f75 100644 (file)
@@ -415,7 +415,7 @@ describe('Tab', () => {
   })
 
   describe('data-api', () => {
-    it('should create dynamicaly a tab', done => {
+    it('should create dynamically a tab', done => {
       fixtureEl.innerHTML = [
         '<ul class="nav nav-tabs" role="tablist">',
         '  <li class="nav-item"><a href="#home" class="nav-link active" role="tab">Home</a></li>',