From d75c33f9ddf64a2c0b4ee4e96450db82d38ffc77 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Kubie=C5=84?= Date: Fri, 13 Jan 2023 13:43:44 +0100 Subject: [PATCH] Changed ```popover``` to ```tooltip``` in docs Changed ```popover``` to ```tooltip``` in tooltip component docs page. --- site/content/docs/5.3/components/tooltips.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site/content/docs/5.3/components/tooltips.md b/site/content/docs/5.3/components/tooltips.md index 7742c6f20cb1..77a69ff034f6 100644 --- a/site/content/docs/5.3/components/tooltips.md +++ b/site/content/docs/5.3/components/tooltips.md @@ -267,7 +267,7 @@ tooltip.setContent({ '.tooltip-inner': 'another title' }) ``` {{< callout info >}} -The `setContent` method accepts an `object` argument, where each property-key is a valid `string` selector within the popover template, and each related property-value can be `string` | `element` | `function` | `null` +The `setContent` method accepts an `object` argument, where each property-key is a valid `string` selector within the tooltip template, and each related property-value can be `string` | `element` | `function` | `null` {{< /callout >}} ### Events @@ -276,10 +276,10 @@ The `setContent` method accepts an `object` argument, where each property-key is | Event | Description | | --- | --- | | `hide.bs.tooltip` | This event is fired immediately when the `hide` instance method has been called. | -| `hidden.bs.tooltip` | This event is fired when the popover has finished being hidden from the user (will wait for CSS transitions to complete). | +| `hidden.bs.tooltip` | This event is fired when the tooltip has finished being hidden from the user (will wait for CSS transitions to complete). | | `inserted.bs.tooltip` | This event is fired after the `show.bs.tooltip` event when the tooltip template has been added to the DOM. | | `show.bs.tooltip` | This event fires immediately when the `show` instance method is called. | -| `shown.bs.tooltip` | This event is fired when the popover has been made visible to the user (will wait for CSS transitions to complete). | +| `shown.bs.tooltip` | This event is fired when the tooltip has been made visible to the user (will wait for CSS transitions to complete). | {{< /bs-table >}} ```js