Skip to content

Commit 2fee906

Browse files
committed
docs: resolve lint failures
--- 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: passed - task: lint_javascript_src status: na - 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: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed ---
1 parent 989e453 commit 2fee906

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/utils/convert-path/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
Examples
1919
--------
2020
> var out = {{alias}}( '/c/foo/bar/beep.c', 'win32' )
21-
'c:\\foo\\bar\\beep.c'
21+
'c:\foo\bar\beep.c'
2222
> out = {{alias}}( '/c/foo/bar/beep.c', 'mixed' )
2323
'c:/foo/bar/beep.c'
2424
> out = {{alias}}( '/c/foo/bar/beep.c', 'posix' )
2525
'/c/foo/bar/beep.c'
2626
> out = {{alias}}( 'C:\\\\foo\\bar\\beep.c', 'win32' )
27-
'C:\\\\foo\\bar\\beep.c'
27+
'C:\\foo\bar\beep.c'
2828
> out = {{alias}}( 'C:\\\\foo\\bar\\beep.c', 'mixed' )
2929
'C:/foo/bar/beep.c'
3030
> out = {{alias}}( 'C:\\\\foo\\bar\\beep.c', 'posix' )

lib/node_modules/@stdlib/utils/convert-path/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
*
3030
* @example
3131
* var p = convertPath( '/c/foo/bar/beep.c', 'win32' );
32-
* // returns 'c:\\foo\\bar\\beep.c'
32+
* // returns 'c:\foo\bar\beep.c'
3333
*
3434
* @example
3535
* var p = convertPath( '/c/foo/bar/beep.c', 'mixed' );

0 commit comments

Comments
 (0)