From 237663833cfc40f8655a369201f68924b43f8f67 Mon Sep 17 00:00:00 2001 From: Almar Klein Date: Fri, 3 Apr 2026 01:29:04 +0200 Subject: [PATCH] fix typos --- src/renderview.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderview.js b/src/renderview.js index aae458e..2348a16 100644 --- a/src/renderview.js +++ b/src/renderview.js @@ -241,7 +241,7 @@ class BaseRenderView { * Set whether the view has a button to minimize the widget. * Note that the view can only be made minimizable if it was instantiated with a wrapper. * - * @param {boolean} resizable - Whether to make it resizable or not. + * @param {boolean} minimizable - Whether to make it minimizable or not. */ setMinimizable (minimizable) { if (this.wrapperElement) { @@ -257,7 +257,7 @@ class BaseRenderView { * Set whether the view has a button to close the widget. * Note that the view can only be made closable if it was instantiated with a wrapper. * - * @param {boolean} resizable - Whether to make it resizable or not. + * @param {boolean} closable - Whether to make it closable or not. */ setClosable (closable) { if (this.wrapperElement) {