summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/catj.ts2
-rw-r--r--examples/colors.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/catj.ts b/examples/catj.ts
index 79a129780..cbe06d4b8 100644
--- a/examples/catj.ts
+++ b/examples/catj.ts
@@ -8,7 +8,7 @@
/* eslint-disable @typescript-eslint/no-use-before-define */
import { parse } from "../flags/mod.ts";
-import * as colors from "../colors/mod.ts";
+import * as colors from "../fmt/colors.ts";
const decoder = new TextDecoder();
diff --git a/examples/colors.ts b/examples/colors.ts
index 9468e8768..6f03355c6 100644
--- a/examples/colors.ts
+++ b/examples/colors.ts
@@ -1,4 +1,4 @@
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-import { bgBlue, red, bold, italic } from "../colors/mod.ts";
+import { bgBlue, red, bold, italic } from "../fmt/colors.ts";
console.log(bgBlue(italic(red(bold("Hello world!")))));