aboutsummaryrefslogtreecommitdiff
path: root/docs/guides/util/hash-a-password.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/guides/util/hash-a-password.md')
-rw-r--r--docs/guides/util/hash-a-password.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/guides/util/hash-a-password.md b/docs/guides/util/hash-a-password.md
index 6941bfcfe..61a59aeaf 100644
--- a/docs/guides/util/hash-a-password.md
+++ b/docs/guides/util/hash-a-password.md
@@ -8,7 +8,7 @@ The `Bun.password.hash()` function provides a fast, built-in mechanism for secur
const password = "super-secure-pa$$word";
const hash = await Bun.password.hash(password);
-// => $argon2id$v=19$m=65536,t=2,p=1$tFq+9AVr1bfPxQdh6E8DQRhEXg/M/SqYCNu6gVdRRNs$GzJ8PuBi+K+BVojzPfS5mjnC8OpLGtv8KJqF99eP6a4
+// => $argon2id$v=19$m=65536,t=2,p=1$tFq+9AVr1bfPxQdh6E8DQRhEXg/M/...
```
---