From 16cfc341f5073fc2d7361adaa389c43cc969635b Mon Sep 17 00:00:00 2001 From: Arsen Mirzaev Tatyano-Muradovich Date: Tue, 1 Apr 2025 16:30:19 +0700 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20README.md?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eb4c0af..9c1e3bb 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,11 @@ Module for creating "hot lines" ``` ```js -import("/js/modules/hotline.mjs").then((hotline) => { +import("/js/modules/hotline.mjs").then((module) => { // Imported the hotline.mjs module // Initializing an instance of the hotline.mjs - const instance = new hotline.default( + const instance = new module.hotline( 'articles', document.getElementById('wrap_articles') );