Skip to content

Commit b0b581b

Browse files
committed
adjust formatting
--- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: passed - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: failed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: passed - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: failed --- --- type: pre_push_report description: Results of running various checks prior to pushing changes. report: - task: run_javascript_examples status: passed - task: run_c_examples status: na - task: run_cpp_examples status: na - task: run_javascript_readme_examples status: failed ---
1 parent 234f29c commit b0b581b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/assert/has-same-constructor/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
# hasSameConstructor
2222

23-
> Tests if two values have the same constructor.
23+
> Test whether two provided values have the same constructor.
2424
2525
<section class="usage">
2626

lib/node_modules/@stdlib/assert/has-same-constructor/examples/index.js

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

2121
'use strict';
2222

23-
var hasSameConstructor = require( './' );
23+
var hasSameConstructor = require( './../lib' );
2424

2525
var bool = hasSameConstructor( [1, 2, 3], ['a', 'b', 'c'] );
2626
console.log( bool );

lib/node_modules/@stdlib/assert/has-same-constructor/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Test whether an object has a specified property, either own or inherited.
22+
* Test whether two provided values have the same constructor.
2323
*
2424
* @module @stdlib/assert/has-same-constructor
2525
*

lib/node_modules/@stdlib/assert/has-same-constructor/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// MAIN //
2222

2323
/**
24-
* Tests if two objects has same contructor function.
24+
* Test whether two provided values have the same constructor
2525
*
2626
* @param {*} x - first input value
2727
* @param {*} y - second input value

0 commit comments

Comments
 (0)