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