summaryrefslogtreecommitdiff
path: root/examples/README.md
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 /examples/README.md
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 'examples/README.md')
-rw-r--r--examples/README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/README.md b/examples/README.md
index 874626ec4..7f828093a 100644
--- a/examples/README.md
+++ b/examples/README.md
@@ -1,11 +1,11 @@
# Deno Example Programs
-These files are accessible for import via "https://deno.land/x/examples/".
+These files are accessible for import via "https://deno.land/std/examples/".
Try it:
```
-> deno https://deno.land/x/examples/gist.ts README.md
+> deno https://deno.land/std/examples/gist.ts README.md
```
## Alias Based Installation
@@ -14,5 +14,5 @@ Add this to your `.bash_profile`
```
export GIST_TOKEN=ABC # Generate at https://github.com/settings/tokens
-alias gist="deno https://deno.land/x/examples/gist.ts --allow-net --allow-env"
+alias gist="deno https://deno.land/std/examples/gist.ts --allow-net --allow-env"
```