1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-27 16:10:57 -05:00

fix wrong links for flags (denoland/deno_std#112)

Original: 1d64eba63d
This commit is contained in:
迷渡 2019-01-14 13:34:46 +08:00 committed by Ryan Dahl
parent 4a79450988
commit 096e0b36e6

View file

@ -6,7 +6,7 @@ Command line arguments parser for Deno based on minimist
```ts
import { args } from "deno";
import { parse } from "https://deno.land/x/flags/index.ts";
import { parse } from "https://deno.land/x/flags/mod.ts";
console.dir(parse(args));
```