diff --git a/js/src/dropdown/dropdown.spec.js b/js/src/dropdown/dropdown.spec.js
index e99e992f3d..963b8d9161 100644
--- a/js/src/dropdown/dropdown.spec.js
+++ b/js/src/dropdown/dropdown.spec.js
@@ -100,7 +100,7 @@ describe('Dropdown', () => {
expect(dropdown.toggle).toHaveBeenCalled()
})
- it('should allow to pass config to popper.js thanks to popperConfig', () => {
+ it('should allow to pass config to popper.js with `popperConfig`', () => {
fixtureEl.innerHTML = [
'
',
'
',
diff --git a/js/src/tooltip/tooltip.spec.js b/js/src/tooltip/tooltip.spec.js
index e4bddcf003..a6cbd78475 100644
--- a/js/src/tooltip/tooltip.spec.js
+++ b/js/src/tooltip/tooltip.spec.js
@@ -109,7 +109,7 @@ describe('Tooltip', () => {
tooltipInContainerEl.click()
})
- it('should allow to pass config to popper.js thanks to popperConfig', () => {
+ it('should allow to pass config to popper.js with `popperConfig`', () => {
fixtureEl.innerHTML = '
'
const tooltipEl = fixtureEl.querySelector('a')
diff --git a/site/content/docs/4.3/components/dropdowns.md b/site/content/docs/4.3/components/dropdowns.md
index 6d0f094b57..01fc276d64 100644
--- a/site/content/docs/4.3/components/dropdowns.md
+++ b/site/content/docs/4.3/components/dropdowns.md
@@ -859,7 +859,7 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap
popperConfig |
null | object |
null |
-
To change Bootstrap default Popper.js config, see Popper.js configuration |
+
To change Bootstrap's default Popper.js config, see Popper.js's configuration |
diff --git a/site/content/docs/4.3/components/popovers.md b/site/content/docs/4.3/components/popovers.md
index 04ba2f15ce..5867ed6fcf 100644
--- a/site/content/docs/4.3/components/popovers.md
+++ b/site/content/docs/4.3/components/popovers.md
@@ -285,7 +285,7 @@ Note that for security reasons the `sanitize`, `sanitizeFn` and `whiteList` opti
popperConfig |
null | object |
null |
-
To change Bootstrap default Popper.js config, see Popper.js configuration |
+
To change Bootstrap's default Popper.js config, see Popper.js's configuration |
diff --git a/site/content/docs/4.3/components/tooltips.md b/site/content/docs/4.3/components/tooltips.md
index 880e761851..087b80c009 100644
--- a/site/content/docs/4.3/components/tooltips.md
+++ b/site/content/docs/4.3/components/tooltips.md
@@ -282,7 +282,7 @@ Note that for security reasons the `sanitize`, `sanitizeFn` and `whiteList` opti
popperConfig |
null | object |
null |
-
To change Bootstrap default Popper.js config, see Popper.js configuration |
+
To change Bootstrap's default Popper.js config, see Popper.js's configuration |