From f3d97863d742981cecce6cbfe0a4c81df17deaaa Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 10 May 2026 04:17:07 +0000 Subject: [PATCH] docs: add `Notes` section content to `blas/ext/base/ndarray/gjoin` README Populates an empty `
` wrapper with bullets describing the empty-input return value and null/undefined element serialization. The behavior is documented in the underlying `@stdlib/blas/ext/base/gjoin` Notes and matches the wrapping convention used by 86 of 87 sibling packages in `blas/ext/base/ndarray` (98.9% conformance). --- .../@stdlib/blas/ext/base/ndarray/gjoin/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/gjoin/README.md b/lib/node_modules/@stdlib/blas/ext/base/ndarray/gjoin/README.md index 9252bb844d2e..e326c27df045 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/gjoin/README.md +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/gjoin/README.md @@ -67,6 +67,11 @@ The function has the following parameters:
+## Notes + +- If provided an empty one-dimensional ndarray, the function returns an empty string. +- If an array element is either `null` or `undefined`, the function will serialize the element as an empty string. +