Skip to content

Commit 53d181b

Browse files
committed
chore: 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: passed - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent e57055b commit 53d181b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ tape( 'main export is a number', function test( t ) {
3636
t.end();
3737
});
3838

39-
tape( 'export is a single-precision floating-point number equal to the natural logarithm of the max single-precision floating-point number', function test( t ) {
39+
tape( 'export is a half-precision floating-point number equal to the natural logarithm of the max half-precision floating-point number', function test( t ) {
4040
t.strictEqual( FLOAT16_MAX_LN, float64ToFloat16( ln( pow( 2, 15 ) * ( 2 - pow( 2, -10 ) ) ) ), 'returns expected value' );
4141
t.strictEqual( FLOAT16_MAX_LN, float64ToFloat16( ln( FLOAT16_MAX ) ), 'returns expected value' );
4242
t.end();

lib/node_modules/@stdlib/ndarray/base/to-flippedlr/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{{alias}}( x )
33
Returns a new ndarray where the order of elements along the last dimension
4-
of an input ndarray is reversed along each dimension.
4+
of an input ndarray is reversed.
55

66
Parameters
77
----------

lib/node_modules/@stdlib/ndarray/base/to-flippedud/README.md

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

8787
## Notes
8888

89-
- If provided a zero-dimensional ndarray, as the ndarray has no dimensions to reverse, the function simply returns a copy the input ndarray. Similarly, if provided a one-dimensional ndarray, as the ndarray has only one dimension, the function simply returns a copy of the input ndarray.
89+
- If provided a zero-dimensional ndarray, as the ndarray has no dimensions to reverse, the function simply returns a copy of the input ndarray. Similarly, if provided a one-dimensional ndarray, as the ndarray has only one dimension, the function simply returns a copy of the input ndarray.
9090

9191
</section>
9292

0 commit comments

Comments
 (0)