summaryrefslogtreecommitdiff
path: root/std/uuid/README.md
diff options
context:
space:
mode:
authorDan Vega <danvega@gmail.com>2020-05-30 00:58:12 -0400
committerGitHub <noreply@github.com>2020-05-30 00:58:12 -0400
commit24e545d5bd2b679055e6c3b637119c57c8ad1243 (patch)
tree2e46dad92bdffe0fffa3396f45b23c3655a6e7bc /std/uuid/README.md
parentd4b05dd89e94ed1bba5b24c683da0a895f2ce597 (diff)
typo (#5948)
Diffstat (limited to 'std/uuid/README.md')
-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 fc2a10e90..2b7c79565 100644
--- a/std/uuid/README.md
+++ b/std/uuid/README.md
@@ -11,5 +11,5 @@ import { v4 } from "https://deno.land/std/uuid/mod.ts";
const myUUID = v4.generate();
// Validate a v4 uuid
-const isValid = v4.validate(aString);
+const isValid = v4.validate(myUUID);
```