Skip to content

Commit

Permalink
docs: remove excess whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed Dec 15, 2024
1 parent 6bbf2d6 commit ff25e13
Show file tree
Hide file tree
Showing 105 changed files with 109 additions and 109 deletions.
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/assert/is-complex-like/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ bool = isComplexLike( x );
<!-- /.usage -->

<section class="notes">

## Notes

- A complex number-like `object` is defined as an `object` having the following properties assigned to numeric values:
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/ext/base/dapx/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,13 +240,13 @@ int main( void ) {

// Specify the number of indexed elements:
const int N = 8;

// Specify a stride:
const int strideX = 1;

// Fill the array:
c_dapx( N, 5.0, x, strideX );

// Print the result:
for ( int i = 0; i < 8; i++ ) {
printf( "x[ %i ] = %lf\n", i, x[ i ] );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/ext/base/dapxsumors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -246,13 +246,13 @@ int main( void ) {

// Specify the number of indexed elements:
const int N = 8;

// Specify a stride:
const int strideX = 1;

// Compute the sum:
double v = stdlib_strided_dapxsumors( N, 5.0, x, strideX );

// Print the result:
printf( "Sum: %lf\n", sum );
}
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/fs/resolve-parent-paths/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ The function accepts the following `options`:
- `some`: return one or more paths resolved within the first directory level containing a match.
- `all`: return all resolved paths within the first directory level containing matches for all provided paths.
- `each`: independently return the first resolved path for each path at any directory level.

Default: `'all'`.

By default, the function begins walking from the current working directory. To specify an alternative directory, set the `dir` option.
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/iter/cuany-by/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ while ( true ) {
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

</section>

<!-- /.related -->
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/iter/cuevery-by/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ while ( true ) {
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

</section>

<!-- /.related -->
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/iter/cunone-by/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ while ( true ) {
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

</section>

<!-- /.related -->
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/iter/cusome-by/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ while ( true ) {
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

</section>

<!-- /.related -->
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/iter/cusome/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ while ( true ) {
<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">

</section>

<!-- /.related -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ int main( void ) {
double x;
bool v;
int i;

for ( i = 0; i < 100; i++ ) {
x = ( ( (double)rand() / (double)RAND_MAX ) * 100.0 );
v = stdlib_base_is_even( x );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ int main( void ) {
double x;
bool v;
int i;

for ( i = 0; i < 100; i++ ) {
x = ( ( (double)rand() / (double)RAND_MAX ) * 100.0 ) - 50.0;
v = stdlib_base_is_integer( x );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ int main( void ) {
float x;
bool v;
int i;

for ( i = 0; i < 100; i++ ) {
x = ( ( (float)rand() / (float)RAND_MAX ) * 100.0f ) - 50.0f;
v = stdlib_base_is_integerf( x );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ int main( void ) {
double x;
bool v;
int i;

for ( i = 0; i < 100; i++ ) {
x = ( ( (double)rand() / (double)RAND_MAX ) * 100.0 ) - 50.0;
v = stdlib_base_is_nonnegative_integer( x );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ int main( void ) {
float x;
bool v;
int i;

for ( i = 0; i < 100; i++ ) {
x = ( ( (float)rand() / (float)RAND_MAX ) * 100.0f ) - 50.0f;
v = stdlib_base_is_nonnegative_integerf( x );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ int main( void ) {
double x;
bool v;
int i;
for ( i = 0; i < 100; i++ ) {
x = ( ( (double)rand() / (double)RAND_MAX ) * 2.0 ) - 1.0;
v = stdlib_base_is_probability( x );
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/acos/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ double stdlib_base_acos( const double x );
int main( void ) {
const double x[] = { -1.0, -0.78, -0.56, -0.33, -0.11, 0.11, 0.33, 0.56, 0.78, 1.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/acosd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ double stdlib_base_acosd( const double x );
int main( void ) {
const double x[] = { 1.0, 1.45, 1.89, 2.33, 2.78, 3.22, 3.66, 4.11, 4.55, 5.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ float stdlib_base_acosdf( const float x );
int main( void ) {
const float x[] = { 1.0f, 1.45f, 1.89f, 2.33f, 2.78f, 3.22f, 3.66f, 4.11f, 4.55f, 5.0f };
float v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/acosf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ float stdlib_base_acosf( const float x );
int main( void ) {
const float x[] = { -1.0f, -0.78f, -0.56f, -0.33f, -0.11f, 0.11f, 0.33f, 0.56f, 0.78f, 1.0f };
float v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/acosh/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ double stdlib_base_acosh( const double x );
int main( void ) {
const double x[] = { 1.0, 1.45, 1.89, 2.33, 2.78, 3.22, 3.66, 4.11, 4.55, 5.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/acot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ double stdlib_base_acot( const double x );
int main( void ) {
const double x[] = { -5.0, -3.89, -2.78, -1.67, -0.56, 0.56, 1.67, 2.78, 3.89, 5.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/acotd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ double stdlib_base_acotd( const double x );
int main( void ) {
const double x[] = { 1.0, 1.45, 1.89, 2.33, 2.78, 3.22, 3.66, 4.11, 4.55, 5.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ float stdlib_base_acotdf( const float x );
int main( void ) {
const float x[] = { 1.0f, 1.45f, 1.89f, 2.33f, 2.78f, 3.22f, 3.66f, 4.11f, 4.55f, 5.0f };
float v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/acotf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ float stdlib_base_acotf( const float x );
int main( void ) {
const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.56f, 0.56f, 1.67f, 2.78f, 3.89f, 5.0f };
float v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/acoth/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ double stdlib_base_acoth( const double x );
int main( void ) {
const double x[] = { 1.0, 1.44, 1.89, 2.33, 2.78, 3.22, 3.67, 4.11, 4.56, 5.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ double stdlib_base_acovercos( const double x );
int main( void ) {
const double x[] = { -2.0, -1.80, -1.78, -1.67, -0.56, -0.27, -1.67, -0.78, -1.89, 0.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ double stdlib_base_acoversin( const double x );
int main( void ) {
const double x[] = { -5.0, -3.89, -2.78, -1.67, -0.56, 0.56, 1.67, 2.78, 3.89, 5.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/acsc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ double stdlib_base_acsc( const double x );
int main( void ) {
const double x[] = { -5.0, -3.89, -2.78, -1.67, -0.56, 0.56, 1.67, 2.78, 3.89, 5.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/acscd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ double stdlib_base_acscd( const double x );
int main( void ) {
const double x[] = { 1.0, 1.45, 1.89, 2.33, 2.78, 3.22, 3.66, 4.11, 4.55, 5.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/acscf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ float stdlib_base_acscf( const float x );
int main( void ) {
const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.56f, 0.56f, 1.67f, 2.78f, 3.89f, 5.0f };
float v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/acsch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ double stdlib_base_acsch( const double x );
int main( void ) {
const double x[] = { -5.0, -3.89, -2.78, -1.67, -0.55, 0.55, 1.67, 2.78, 3.89, 5.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ double stdlib_base_ahavercos( const double x );
int main( void ) {
const double x[] = { -2.0, -1.6, -1.2, -0.8, -0.4, 0.4, 0.8, 1.2, 1.6, 2.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ float stdlib_base_ahavercosf( const float x );
int main( void ) {
const float x[] = { -2.0f, -1.6f, -1.2f, -0.8f, -0.4f, 0.4f, 0.8f, 1.2f, 1.6f, 2.0f };
float v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ double stdlib_base_ahaversin( const double x );
int main( void ) {
const double x[] = { -2.0, -1.6, -1.2, -0.8, -0.4, 0.4, 0.8, 1.2, 1.6, 2.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ float stdlib_base_ahaversinf( const float x );
int main( void ) {
const float x[] = { -2.0f, -1.6f, -1.2f, -0.8f, -0.4f, 0.4f, 0.8f, 1.2f, 1.6f, 2.0f };
float v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/asec/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ double stdlib_base_asec( const double x );
int main( void ) {
const double x[] = { -5.0, -3.89, -2.78, -1.67, -0.56, 0.56, 1.67, 2.78, 3.89, 5.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/asecd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ double stdlib_base_asecd( const double x );
int main( void ) {
const double x[] = { 1.0, 1.45, 1.89, 2.33, 2.78, 3.22, 3.66, 4.11, 4.55, 5.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/asecf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ float stdlib_base_asecf( const float x );
int main( void ) {
const float x[] = { -5.0f, -3.89f, -2.78f, -1.67f, -0.56f, 0.56f, 1.67f, 2.78f, 3.89f, 5.0f };
float v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/asech/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ double stdlib_base_asech( const double x );
int main( void ) {
const double x[] = { 0.0, 0.5, 1.0, 1.89, 2.33, 3.22, 3.67, 4.11, 4.56, 5.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/asin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ double stdlib_base_asin( const double x );
int main( void ) {
const double x[] = { -1.0, -0.78, -0.56, -0.33, -0.11, 0.11, 0.33, 0.56, 0.78, 1.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/math/base/special/asind/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ double stdlib_base_asind( const double x );
int main( void ) {
const double x[] = { 1.0, 0.45, -0.89, 0.33, -0.78, -0.22, 0.66, 0.11, -0.55, 0.0 };
double v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ float stdlib_base_asindf( const float x );
int main( void ) {
const float x[] = { 1.0f, 0.45f, -0.89f, 0.33f, -0.78f, -0.22f, 0.66f, 0.11f, -0.55f, 0.0f };
float v;
int i;
for ( i = 0; i < 10; i++ ) {
Expand Down
Loading

0 comments on commit ff25e13

Please sign in to comment.