Skip to content

Commit 5f73301

Browse files
committed
docs: minor clean-up
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 9584d63 commit 5f73301

File tree

29 files changed

+36
-37
lines changed

29 files changed

+36
-37
lines changed

lib/node_modules/@stdlib/array/base/accessors/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ var fcns = obj.accessors;
8181
- **idx**: element index.
8282
- **value**: value to set.
8383

84-
- The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element accesss via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects.
84+
- The intent of this function is to provide a minimal abstraction over how elements are accessed when operating on indexed (i.e., array-like objects supporting element access via integer indices using bracket `[]` syntax) and accessor (i.e., array-like objects supporting the get/set protocol in which explicit `get` and `set` methods are used for element access) array-like objects.
8585

8686
</section>
8787

lib/node_modules/@stdlib/array/base/at/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ The function accepts the following arguments:
7272

7373
## Notes
7474

75-
- If provided an array-like object having an `at` method , the function defers execution to that method and assumes that the method has the following signature:
75+
- If provided an array-like object having an `at` method, the function defers execution to that method and assumes that the method has the following signature:
7676

7777
```text
7878
x.at( index )

lib/node_modules/@stdlib/array/base/cusome-by/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ function fcn( value) {
4242
var x = [ 0, 0, 0, 1, 1 ];
4343

4444
var y = cusomeBy( x, 2, fcn );
45-
// returns [ false, false, false , false, true ]
45+
// returns [ false, false, false, false, true ]
4646
```
4747

4848
The invoked `predicate` function is provided three arguments:

lib/node_modules/@stdlib/array/base/for-each/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# forEach
2222

23-
> Invoke a callback funcion once for each array element.
23+
> Invoke a callback function once for each array element.
2424
2525
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
2626

lib/node_modules/@stdlib/blas/base/cscal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ cscal.ndarray( 2, ca, cx, 2, 1 );
127127

128128
## Notes
129129

130-
- If `N <= 0` or `strideX <= 0` , both functions return `cx` unchanged.
130+
- If `N <= 0` or `strideX <= 0`, both functions return `cx` unchanged.
131131
- `cscal()` corresponds to the [BLAS][blas] level 1 function [`cscal`][cscal].
132132

133133
</section>

lib/node_modules/@stdlib/blas/base/zscal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ zscal.ndarray( 2, alpha, x, 2, 1 );
127127

128128
## Notes
129129

130-
- If `N <= 0` , both functions return `x` unchanged.
130+
- If `N <= 0`, both functions return `x` unchanged.
131131
- `zscal()` corresponds to the [BLAS][blas] level 1 function [`zscal`][zscal].
132132

133133
</section>

lib/node_modules/@stdlib/math/base/assert/is-composite/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ bool stdlib_base_is_composite( const double x );
149149
#include <stdbool.h>
150150
151151
int main( void ) {
152-
const double x[] = { 0.0, 0.0/0.0, 1.0, -1.0 , 4.0 };
152+
const double x[] = { 0.0, 0.0/0.0, 1.0, -1.0, 4.0 };
153153
154154
bool r;
155155
int i;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ v = nonfibonacci( 3 );
7272
// returns 7
7373
```
7474

75-
If provided either a non-integer or `n < 1`, the function returns `NaN`.
75+
If provided either a non-integer or `n < 1`, the function returns `NaN`.
7676

7777
```javascript
7878
var v = nonfibonacci( -1 );
@@ -195,7 +195,7 @@ int main( void ) {
195195
int i;
196196
for ( i = 1; i < 12; i++ ) {
197197
double result = stdlib_base_nonfibonacci( i );
198-
printf( "x: %i => result: %lf", i , result );
198+
printf( "x: %i => result: %lf", i, result );
199199
}
200200
}
201201
```

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ v = nonfibonaccif( 3 );
7272
// returns 7
7373
```
7474

75-
If provided either a non-integer or `n < 1`, the function returns `NaN`.
75+
If provided either a non-integer or `n < 1`, the function returns `NaN`.
7676

7777
```javascript
7878
var v = nonfibonaccif( -1 );
@@ -190,9 +190,9 @@ float stdlib_base_nonfibonaccif( const int32_t x );
190190
191191
int main( void ) {
192192
int i;
193-
193+
194194
for ( i = 1; i < 12; i++ ) {
195-
printf( "x: %i => result: %f", i , stdlib_base_nonfibonaccif( i ) );
195+
printf( "x: %i => result: %f", i, stdlib_base_nonfibonaccif( i ) );
196196
}
197197
}
198198
```

lib/node_modules/@stdlib/stats/base/dists/cosine/cdf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ int main( void ) {
237237
mu = random_uniform( -50.0, 50.0 );
238238
s = random_uniform( STDLIB_CONSTANT_FLOAT64_EPS, 20.0 );
239239
y = stdlib_base_dists_cosine_cdf( x, mu, s );
240-
printf( "x: %lf, µ: %lf, s: %lf, F(x;µ,s): %lf\n", x, mu, s , y );
240+
printf( "x: %lf, µ: %lf, s: %lf, F(x;µ,s): %lf\n", x, mu, s, y );
241241
}
242242
243243
return 0;

0 commit comments

Comments
 (0)