Skip to content

Commit c010783

Browse files
Remove redundant inline comment in normalizePossiblyUNCPath
The comment duplicates the JSDoc above the function. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 645a102 commit c010783

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

src/filesystem/path-validation.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ function isUNCPath(p: string): boolean {
1818
function normalizePossiblyUNCPath(p: string): string {
1919
if (isUNCPath(p)) {
2020
let normalized = path.normalize(p);
21-
// path.normalize may strip a leading backslash from UNC paths
2221
if (!normalized.startsWith('\\\\')) {
2322
normalized = '\\' + normalized;
2423
}

0 commit comments

Comments
 (0)