Skip to content

Commit eff29c8

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: na - 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 aecc65d commit eff29c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/stats/strided/distances/dchebyshev/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ limitations under the License.
2424
2525
<section class="intro">
2626

27-
The [Chebyshev distance][wikipedia-chebyshev-distance] (also known as the $L_∞$ metric ) is defined as
27+
The [Chebyshev distance][wikipedia-chebyshev-distance] (also known as the $L_∞$ metric) is defined as
2828

2929
<!-- <equation class="equation" label="eq:chebyshev_distance" align="center" raw="D(A,B)=\max _{i}(|a_{i}-b_{i}|) = \lim _{p\to \infty}{\bigg (}\sum_{i=0}^{N-1}\left|a_{i}-b_{i}\right|^{p}{\bigg )}^{1/p}" alt="Equation for Chebyshev distance."> -->
3030

lib/node_modules/@stdlib/stats/strided/distances/dchebyshev/test/test.ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ tape( 'the function supports an `x` offset', function test( t ) {
128128

129129
// Test against textbook formula: max(4,3,2)
130130
d = dchebyshev( 3, x, 2, 1, y, 1, 0 );
131-
t.strictEqual( isAlmostSameValue( d, 4.0, 0 ), true, 'returns expected value' + d );
131+
t.strictEqual( isAlmostSameValue( d, 4.0, 0 ), true, 'returns expected value' );
132132
t.end();
133133
});
134134

0 commit comments

Comments
 (0)