Skip to content

Commit f925c9c

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: passed - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent edef1e2 commit f925c9c

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

lib/node_modules/@stdlib/_tools/docs/www/readme-fragment-file-tree/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @example
2727
* var build = require( '@stdlib/_tools/docs/www/readme-fragment-file-tree' );
2828
*
29-
* build( ./build', done );
29+
* build( './build', done );
3030
*
3131
* function done( error ) {
3232
* if ( error ) {

lib/node_modules/@stdlib/_tools/npm/pkg-dependents/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
# Dependents
2222

23-
> Return the list of dependents for a package from npm..
23+
> Return the list of dependents for a package from npm.
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/_tools/package-json/schema/lib/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
* var schema = require( '@stdlib/_tools/package-json/schema' );
2828
*
2929
* var json = schema();
30+
* // returns <Object>
3031
*/
3132

3233
// MODULES //

lib/node_modules/@stdlib/_tools/package-json/validate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/_tools/package-json/validate",
33
"version": "0.0.0",
4-
"description": "Validate a package.json.",
4+
"description": "Validate a package.json file.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

lib/node_modules/@stdlib/array/dataview/docs/repl.txt

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

3030

3131
{{alias}}.prototype.buffer
32-
Read-only property which returns the underyling array buffer.
32+
Read-only property which returns the underlying array buffer.
3333

3434
Examples
3535
--------

lib/node_modules/@stdlib/array/dataview/test/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ tape( 'the constructor throws an error if not provided an array buffer', opts, f
110110
}
111111
});
112112

113-
tape( 'the constructor returns a `DataView` instance having a `buffer` property, which returns the underlying an array buffer', opts, function test( t ) {
113+
tape( 'the constructor returns a `DataView` instance having a `buffer` property, which returns the underlying array buffer', opts, function test( t ) {
114114
var buf;
115115
var dv;
116116

@@ -151,7 +151,7 @@ tape( 'the constructor returns a `DataView` instance having a `byteLength` prope
151151
t.end();
152152
});
153153

154-
tape( 'the constructor returns a `DataView` instance having a `byteOffset` property, which returns the number of bytes from the view to the start of the underlying an array buffer', opts, function test( t ) {
154+
tape( 'the constructor returns a `DataView` instance having a `byteOffset` property, which returns the number of bytes from the view to the start of the underlying array buffer', opts, function test( t ) {
155155
var buf;
156156
var dv;
157157

0 commit comments

Comments
 (0)