Skip to content

Commit bd18248

Browse files
docs: update related packages sections
PR-URL: #4675 Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent bb638df commit bd18248

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

lib/node_modules/@stdlib/iter/until-each/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,12 @@ while ( true ) {
220220

221221
<section class="related">
222222

223+
* * *
224+
225+
## See Also
226+
227+
- <span class="package-name">[`@stdlib/iter/while-each`][@stdlib/iter/while-each]</span><span class="delimiter">: </span><span class="description">create an iterator which, while a test condition is true, invokes a function for each iterated value before returning the iterated value.</span>
228+
223229
</section>
224230

225231
<!-- /.related -->
@@ -228,6 +234,12 @@ while ( true ) {
228234

229235
<section class="links">
230236

237+
<!-- <related-links> -->
238+
239+
[@stdlib/iter/while-each]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/iter/while-each
240+
241+
<!-- </related-links> -->
242+
231243
</section>
232244

233245
<!-- /.links -->

lib/node_modules/@stdlib/math/base/special/asindf/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,13 @@ int main( void ) {
178178

179179
<section class="related">
180180

181+
* * *
182+
183+
## See Also
184+
185+
- <span class="package-name">[`@stdlib/math/base/special/asinf`][@stdlib/math/base/special/asinf]</span><span class="delimiter">: </span><span class="description">compute the arcsine of a single-precision floating-point number.</span>
186+
- <span class="package-name">[`@stdlib/math/base/special/asind`][@stdlib/math/base/special/asind]</span><span class="delimiter">: </span><span class="description">compute the arcsine (in degrees) of a double-precision floating-point number.</span>
187+
181188
</section>
182189

183190
<!-- /.related -->
@@ -190,6 +197,10 @@ int main( void ) {
190197

191198
<!-- <related-links> -->
192199

200+
[@stdlib/math/base/special/asinf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/asinf
201+
202+
[@stdlib/math/base/special/asind]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/asind
203+
193204
<!-- </related-links> -->
194205

195206
</section>

lib/node_modules/@stdlib/math/base/special/fast/alpha-max-plus-beta-min/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,12 @@ for ( i = 0; i < 100; i++ ) {
159159
#include "stdlib/math/base/special/fast/alpha_max_plus_beta_min.h"
160160
```
161161

162-
#### stdlib_base_fast_ampbm( x, y )
162+
#### stdlib_base_fast_ampbm( x, y )
163163

164164
Computes the hypotenuse using the alpha max plus beta min algorithm.
165165

166166
```c
167-
double h = stdlib_base_fast_ampbm( -5.0, 12.0 );
167+
double h = stdlib_base_fast_ampbm( -5.0, 12.0 );
168168
// returns ~13.5
169169
```
170170

0 commit comments

Comments
 (0)