Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/fs/resolve-parent-paths/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function onPaths( error, paths ) {
throw error;
}
console.log( paths );
// => '...'
// => [ '...', '...' ]
}
```

Expand Down Expand Up @@ -74,7 +74,7 @@ function onPaths( error, paths ) {
throw error;
}
console.log( paths );
// => '...'
// => [ '...', '...' ]
}
```

Expand All @@ -92,7 +92,7 @@ function onPaths( error, paths ) {
throw error;
}
console.log( paths );
// => '...'
// => [ '...', '...' ]
}
```

Expand Down
Loading