From d71986992ece9ea2ac0a7b0658d6b5f860f8e244 Mon Sep 17 00:00:00 2001 From: Oleksandr Redko Date: Fri, 18 Aug 2023 02:04:03 +0300 Subject: [PATCH] docs: fix typo node_js docs (#117) This PR corrects a typo in the comment. --- node_js.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node_js.go b/node_js.go index 24b78ed..b2a0bc8 100644 --- a/node_js.go +++ b/node_js.go @@ -7,6 +7,6 @@ package uuid // getHardwareInterface returns nil values for the JS version of the code. -// This remvoves the "net" dependency, because it is not used in the browser. +// This removes the "net" dependency, because it is not used in the browser. // Using the "net" library inflates the size of the transpiled JS code by 673k bytes. func getHardwareInterface(name string) (string, []byte) { return "", nil }