summaryrefslogtreecommitdiff
path: root/colors/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'colors/README.md')
-rw-r--r--colors/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/colors/README.md b/colors/README.md
index e6e0890ff..7a02d9efb 100644
--- a/colors/README.md
+++ b/colors/README.md
@@ -11,7 +11,7 @@ The main modules exports several functions which can color the output to the
console:
```ts
-import { bgBlue, red, bold } from "https://deno.land/x/std/colors/mod.ts";
+import { bgBlue, red, bold } from "https://deno.land/std/colors/mod.ts";
console.log(bgBlue(red(bold("Hello world!"))));
```