From a4d76f4c4c604e7725cfd96abe3c18b20adbcb1a Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Mon, 2 Dec 2024 15:43:14 +0100 Subject: [PATCH] Improve comment for MountOptions.prepareContainer --- src/mount.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mount.ts b/src/mount.ts index edba3d9..87c1dd8 100644 --- a/src/mount.ts +++ b/src/mount.ts @@ -13,8 +13,8 @@ export type MountOptions = { connected?: boolean; /** - * When `connected` is true, allows to customize the container to which the - * wrapper is connected to. + * When `connected` is true, allows customizing the DOM container in which the + * component is mounted. * Useful to add custom styles and such. */ prepareContainer?: (container: HTMLElement) => void;