summaryrefslogtreecommitdiff
path: root/std/fs/walk.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/fs/walk.ts')
-rw-r--r--std/fs/walk.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/fs/walk.ts b/std/fs/walk.ts
index 16ccc357e..efc54bc23 100644
--- a/std/fs/walk.ts
+++ b/std/fs/walk.ts
@@ -2,7 +2,7 @@
// https://golang.org/pkg/path/filepath/#Walk
// Copyright 2009 The Go Authors. All rights reserved. BSD license.
import { unimplemented } from "../testing/asserts.ts";
-import { join } from "./path/mod.ts";
+import { join } from "../path/mod.ts";
const { readDir, readDirSync, stat, statSync } = Deno;
type FileInfo = Deno.FileInfo;