From c71163f9156fa6a99adad4823138449aaa9656a8 Mon Sep 17 00:00:00 2001
From: Benedikt Seeger <benedikt.seeger@ptb.de>
Date: Thu, 27 Feb 2025 12:50:49 +0100
Subject: [PATCH] fixed js import statement in doku

---
 dsiUnits-js/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dsiUnits-js/README.md b/dsiUnits-js/README.md
index 573f069..78221f1 100644
--- a/dsiUnits-js/README.md
+++ b/dsiUnits-js/README.md
@@ -28,8 +28,8 @@ Or clone the repository and bundle the code with your preferred bundler (Webpack
 For ES modules, import the classes as follows:
 
 ```js
-import { DSIUnit } from "dsi-units-js-lib/src/dsiUnit.js";
-import "dsi-units-js-lib/src/dsiUnitInput.js"; // This registers the <dsi-unit-input> custom element.
+import { DSIUnit } from "dsiunits-js/src/dsiUnit.js";
+import "dsiunits-js/src/dsiUnitInput.js"; // This registers the <dsi-unit-input> custom element.
 ```
 
 ### Using the DSIUnit Class
-- 
GitLab