summaryrefslogtreecommitdiff
path: root/std/node/url.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/node/url.ts')
-rw-r--r--std/node/url.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/node/url.ts b/std/node/url.ts
index a0a3e5f33..9d2fbe757 100644
--- a/std/node/url.ts
+++ b/std/node/url.ts
@@ -76,7 +76,7 @@ function getPathFromURLWin(url: URL): string {
pathname = pathname.replace(forwardSlashRegEx, "\\");
pathname = decodeURIComponent(pathname);
if (hostname !== "") {
- //TODO add support for punycode encodings
+ // TODO(bartlomieju): add support for punycode encodings
return `\\\\${hostname}${pathname}`;
} else {
// Otherwise, it's a local path that requires a drive letter