diff options
Diffstat (limited to 'js/read_link.ts')
-rw-r--r-- | js/read_link.ts | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/js/read_link.ts b/js/read_link.ts index b080fb7a5..6a518231f 100644 --- a/js/read_link.ts +++ b/js/read_link.ts @@ -6,8 +6,7 @@ import * as dispatch from "./dispatch"; /** Returns the destination of the named symbolic link synchronously. * - * import { readlinkSync } from "deno"; - * const targetPath = readlinkSync("symlink/path"); + * const targetPath = Deno.readlinkSync("symlink/path"); */ export function readlinkSync(name: string): string { return res(dispatch.sendSync(...req(name))); @@ -15,8 +14,7 @@ export function readlinkSync(name: string): string { /** Returns the destination of the named symbolic link. * - * import { readlink } from "deno"; - * const targetPath = await readlink("symlink/path"); + * const targetPath = await Deno.readlink("symlink/path"); */ export async function readlink(name: string): Promise<string> { return res(await dispatch.sendAsync(...req(name))); |