From e57175c9de181d2764e908793b3a96ce20ee0f7d Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 16 May 2026 16:24:50 +0000 Subject: [PATCH 1/3] style: add `// MAIN //` section comment to `@stdlib/constants/float16/pi` Add the `// MAIN //` section-comment marker separating the module documentation from the constant implementation in `lib/index.js` (present in 50 of 53, 94%, `@stdlib/constants/float16` members). `pi` was one of three members omitting the marker. The change adds a non-semantic source comment only; the exported value is unchanged. --- lib/node_modules/@stdlib/constants/float16/pi/lib/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/node_modules/@stdlib/constants/float16/pi/lib/index.js b/lib/node_modules/@stdlib/constants/float16/pi/lib/index.js index 80a2031ce216..91a0840e6c38 100644 --- a/lib/node_modules/@stdlib/constants/float16/pi/lib/index.js +++ b/lib/node_modules/@stdlib/constants/float16/pi/lib/index.js @@ -29,6 +29,9 @@ * // returns 3.140625 */ + +// MAIN // + /** * The mathematical constant `π`. * From 5cde70c6b1d911eaa95be7f3baf9ca0fa4fb931d Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 16 May 2026 16:24:56 +0000 Subject: [PATCH 2/3] style: add `// MAIN //` section comment to `@stdlib/constants/float16/half-pi` Add the `// MAIN //` section-comment marker separating the module documentation from the constant implementation in `lib/index.js` (present in 50 of 53, 94%, `@stdlib/constants/float16` members). `half-pi` was one of three members omitting the marker. The change adds a non-semantic source comment only; the exported value is unchanged. --- .../@stdlib/constants/float16/half-pi/lib/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/node_modules/@stdlib/constants/float16/half-pi/lib/index.js b/lib/node_modules/@stdlib/constants/float16/half-pi/lib/index.js index 6271a7bc03ed..35da66e1b514 100644 --- a/lib/node_modules/@stdlib/constants/float16/half-pi/lib/index.js +++ b/lib/node_modules/@stdlib/constants/float16/half-pi/lib/index.js @@ -29,6 +29,9 @@ * // returns 1.5703125 */ + +// MAIN // + /** * One half times the mathematical constant `π`. * From da2e2951af2db8efe3bcf22b58963d06ee661b2b Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 16 May 2026 16:24:56 +0000 Subject: [PATCH 3/3] style: add `// MAIN //` section comment to `@stdlib/constants/float16/two-pi` Add the `// MAIN //` section-comment marker separating the module documentation from the constant implementation in `lib/index.js` (present in 50 of 53, 94%, `@stdlib/constants/float16` members). `two-pi` was one of three members omitting the marker. The change adds a non-semantic source comment only; the exported value is unchanged. --- lib/node_modules/@stdlib/constants/float16/two-pi/lib/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/node_modules/@stdlib/constants/float16/two-pi/lib/index.js b/lib/node_modules/@stdlib/constants/float16/two-pi/lib/index.js index 2d0173ec76e6..6e566eb5842c 100644 --- a/lib/node_modules/@stdlib/constants/float16/two-pi/lib/index.js +++ b/lib/node_modules/@stdlib/constants/float16/two-pi/lib/index.js @@ -29,6 +29,9 @@ * // returns 6.28125 */ + +// MAIN // + /** * The mathematical constant `π` times `2`. *