From c4ffcc21380ba594148bc321ff969ca75a57b636 Mon Sep 17 00:00:00 2001 From: kingchenc Date: Sat, 23 May 2026 19:10:18 +0200 Subject: [PATCH] docs(node): correct doc-comment package name to wickra MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The module doc-comment in bindings/node/src/lib.rs still pointed at @wickra/wickra. The package is published as bare "wickra" — every README, Quickstart and example already uses that name. Align the inline doc with the published name. --- bindings/node/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/node/src/lib.rs b/bindings/node/src/lib.rs index 27a0dc07..3ef53a24 100644 --- a/bindings/node/src/lib.rs +++ b/bindings/node/src/lib.rs @@ -5,7 +5,7 @@ //! cd bindings/node && npm install && npm run build //! ``` //! -//! Then `require("@wickra/wickra")` from Node. +//! Then `require("wickra")` from Node. #![allow(clippy::needless_pass_by_value)] #![allow(missing_debug_implementations)] // napi-derive auto-generates the Node-facing types.