From 819830623e3bd045c5c8e5c812d65eedfdff5583 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 13 Jun 2026 04:16:51 +0000 Subject: [PATCH 1/2] docs: link `[converts]` to base package in `@stdlib/math/iter/special/deg2rad` README Adds the `[@stdlib/math/base/special/deg2rad]` link to the verb in the package's README summary line and Usage section description, matching the verb-link convention used by 95/97 sibling packages in `@stdlib/math/iter/special` (e.g. `ceil`, `floor`, `round`, `trunc`). The link reference is already defined in the README's links section; only the inline link was missing. --- lib/node_modules/@stdlib/math/iter/special/deg2rad/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/iter/special/deg2rad/README.md b/lib/node_modules/@stdlib/math/iter/special/deg2rad/README.md index ebec61223c47..3f8b9379ffef 100644 --- a/lib/node_modules/@stdlib/math/iter/special/deg2rad/README.md +++ b/lib/node_modules/@stdlib/math/iter/special/deg2rad/README.md @@ -20,7 +20,7 @@ limitations under the License. # iterDeg2rad -> Create an [iterator][mdn-iterator-protocol] which converts an angle from degrees to radians for each iterated value. +> Create an [iterator][mdn-iterator-protocol] which [converts][@stdlib/math/base/special/deg2rad] an angle from degrees to radians for each iterated value. @@ -42,7 +42,7 @@ var iterDeg2rad = require( '@stdlib/math/iter/special/deg2rad' ); #### iterDeg2rad( iterator ) -Returns an [iterator][mdn-iterator-protocol] which iteratively converts an angle from degrees to radians. +Returns an [iterator][mdn-iterator-protocol] which iteratively [converts][@stdlib/math/base/special/deg2rad] an angle from degrees to radians. ```javascript var array2iterator = require( '@stdlib/array/to-iterator' ); From fcad12a166f0a39e342e152ae4dc8c2eaa0e2708 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 13 Jun 2026 04:16:57 +0000 Subject: [PATCH 2/2] docs: link `[converts]` to base package in `@stdlib/math/iter/special/rad2deg` README Adds the `[@stdlib/math/base/special/rad2deg]` link to the verb in the package's README summary line and Usage section description, matching the verb-link convention used by 95/97 sibling packages in `@stdlib/math/iter/special` (e.g. `ceil`, `floor`, `round`, `trunc`). The link reference is already defined in the README's links section; only the inline link was missing. --- lib/node_modules/@stdlib/math/iter/special/rad2deg/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/math/iter/special/rad2deg/README.md b/lib/node_modules/@stdlib/math/iter/special/rad2deg/README.md index 8066753450da..f79772f3a9e1 100644 --- a/lib/node_modules/@stdlib/math/iter/special/rad2deg/README.md +++ b/lib/node_modules/@stdlib/math/iter/special/rad2deg/README.md @@ -20,7 +20,7 @@ limitations under the License. # iterRad2deg -> Create an [iterator][mdn-iterator-protocol] which converts an angle from radians to degrees for each iterated value. +> Create an [iterator][mdn-iterator-protocol] which [converts][@stdlib/math/base/special/rad2deg] an angle from radians to degrees for each iterated value. @@ -42,7 +42,7 @@ var iterRad2deg = require( '@stdlib/math/iter/special/rad2deg' ); #### iterRad2deg( iterator ) -Returns an [iterator][mdn-iterator-protocol] which iteratively converts an angle from radians to degrees. +Returns an [iterator][mdn-iterator-protocol] which iteratively [converts][@stdlib/math/base/special/rad2deg] an angle from radians to degrees. ```javascript var array2iterator = require( '@stdlib/array/to-iterator' );