summaryrefslogtreecommitdiff
path: root/std/uuid
diff options
context:
space:
mode:
authortokiedokie <thetokiedokie@gmail.com>2020-10-04 21:18:36 +0900
committerGitHub <noreply@github.com>2020-10-04 14:18:36 +0200
commit3d65177dbcaf6d08c7e4a412beece8ee6939d466 (patch)
tree53b5954f612daa559f8e893471083f854ea63464 /std/uuid
parentec963238230c7f92a29da27ced0a2ec706af92d0 (diff)
docs(std): version all imports in README (#7442)
Use $STD_VERSION in std/ README files to automatically display proper version.
Diffstat (limited to 'std/uuid')
-rw-r--r--std/uuid/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/uuid/README.md b/std/uuid/README.md
index 4df1084c4..846b78263 100644
--- a/std/uuid/README.md
+++ b/std/uuid/README.md
@@ -5,7 +5,7 @@ Support for version 1, 4, and 5 UUIDs.
## Usage
```ts
-import { v4 } from "https://deno.land/std/uuid/mod.ts";
+import { v4 } from "https://deno.land/std@$STD_VERSION/uuid/mod.ts";
// Generate a v4 uuid.
const myUUID = v4.generate();