Skip to content

Commit bd5967c

Browse files
committed
Update comments
1 parent 636de4e commit bd5967c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/node_modules/@stdlib/fs/resolve-parent-path/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ opts = {
8989
'dir': __dirname
9090
};
9191

92-
// Sync //
92+
/* Sync */
9393

9494
out = resolveParentPath.sync( 'package.json', opts );
9595
// returns '...'
@@ -98,7 +98,7 @@ out = resolveParentPath.sync( 'non_existent_basename' );
9898
// returns null
9999

100100

101-
// Async //
101+
/* Async */
102102

103103
resolveParentPath( 'package.json', opts, onPath );
104104
resolveParentPath( './../non_existent_path', onPath );

lib/node_modules/@stdlib/fs/resolve-parent-path/examples/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ opts = {
99
'dir': __dirname
1010
};
1111

12-
// Sync //
12+
/* Sync */
1313

1414
out = resolveParentPath.sync( 'package.json', opts );
1515
console.log( out );
@@ -20,7 +20,7 @@ console.log( out );
2020
// => null
2121

2222

23-
// Async //
23+
/* Async */
2424

2525
resolveParentPath( 'package.json', opts, onPath );
2626
resolveParentPath( './../non_existent_path', onPath );

0 commit comments

Comments
 (0)