Skip to content

Commit 0042479

Browse files
committed
style: remove extra spaces in return annotation comments
--- 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: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - 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 905019c commit 0042479

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/array/base/to-inserted-at/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var assign = require( './assign.js' );
4848
* // returns [ 1, 6, 2, 3, 4 ]
4949
*
5050
* v = toInsertedAt( x, -2, 7 );
51-
* // returns [ 1, 2, 3, 7, 4 ]
51+
* // returns [ 1, 2, 3, 7, 4 ]
5252
*/
5353
function toInsertedAt( x, index, value ) {
5454
var out;

lib/node_modules/@stdlib/array/base/with/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function hasMethod( obj, method ) {
7070
* // returns [ 1, 6, 3, 4 ]
7171
*
7272
* v = arrayWith( x, -2, 7 );
73-
* // returns [ 1, 2, 7, 4 ]
73+
* // returns [ 1, 2, 7, 4 ]
7474
*/
7575
function arrayWith( x, index, value ) {
7676
var out;

lib/node_modules/@stdlib/array/base/without/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var assign = require( './assign.js' );
4747
* // returns [ 1, 3, 4 ]
4848
*
4949
* v = without( x, -2 );
50-
* // returns [ 1, 2, 4 ]
50+
* // returns [ 1, 2, 4 ]
5151
*/
5252
function without( x, index ) {
5353
var out;

0 commit comments

Comments
 (0)