From 499bc4c4cdbb621696acac2755ab6694d2161d7c Mon Sep 17 00:00:00 2001 From: Cory LaViska Date: Wed, 2 Jun 2021 19:05:47 -0400 Subject: [PATCH] fix comments --- src/components/tooltip/tooltip.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/tooltip/tooltip.ts b/src/components/tooltip/tooltip.ts index e7d2155d2..bcaf75cad 100644 --- a/src/components/tooltip/tooltip.ts +++ b/src/components/tooltip/tooltip.ts @@ -79,13 +79,13 @@ export default class SlTooltip extends LitElement { */ @property() trigger = 'hover focus'; - /** Emitted when the tooltip begins to show. Calling `event.preventDefault()` will prevent it from being shown. */ + /** Emitted when the tooltip begins to show. */ @event('sl-show') slShow: EventEmitter; /** Emitted after the tooltip has shown and all transitions are complete. */ @event('sl-after-show') slAfterShow: EventEmitter; - /** Emitted when the tooltip begins to hide. Calling `event.preventDefault()` will prevent it from being hidden. */ + /** Emitted when the tooltip begins to hide. */ @event('sl-hide') slHide: EventEmitter; /** Emitted after the tooltip has hidden and all transitions are complete. */