summaryrefslogtreecommitdiff
path: root/colors
diff options
context:
space:
mode:
authorAndy Hayden <andyhayden1@gmail.com>2019-03-06 07:24:53 -0800
committerRyan Dahl <ry@tinyclouds.org>2019-03-06 10:24:53 -0500
commitd29957ad17956016c35a04f5f1f98565e58e8a2e (patch)
tree05c4d2e063fd366dd0b9304b13e9a75190c544f7 /colors
parentc6075f373e42a17903e857b9b28ff983d571d43f (diff)
Replace deno.land/x/ with deno.land/std/ (denoland/deno_std#239)
Original: https://github.com/denoland/deno_std/commit/0fc13fffbdb59d6aee2b11ff17a5de382273126b
Diffstat (limited to 'colors')
-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!"))));
```