diff options
Diffstat (limited to 'flags/example.ts')
-rw-r--r-- | flags/example.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/flags/example.ts b/flags/example.ts index 99d7102e2..811aacd69 100644 --- a/flags/example.ts +++ b/flags/example.ts @@ -1,4 +1,4 @@ import { args } from "deno"; -import parseArgs from "./index.ts"; +import { parse } from "./index.ts"; -console.dir(parseArgs(args)); +console.dir(parse(args)); |