From fd7bb959cc6c479abef80d8749261d30c0cc3d0b Mon Sep 17 00:00:00 2001 From: Gaspard Wierzbinski Date: Thu, 23 Jan 2025 16:28:10 +0100 Subject: [PATCH] fix: :memo: Specify hash format --- app/structures/content-format/page.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/structures/content-format/page.mdx b/app/structures/content-format/page.mdx index b294f93..66db689 100644 --- a/app/structures/content-format/page.mdx +++ b/app/structures/content-format/page.mdx @@ -85,7 +85,7 @@ It is a good idea to provide at least two versions of an image (if possible): on Size of the content in bytes. - Hash of the content. + Hash of the content. Encoded in hexadecimal. ```typescript type HashNames = "sha256" | "sha512" | "sha3-256" | "sha3-512" | "blake2b-256" | "blake2b-512" | "blake3-256" | "blake3-512" | "md5" | "sha1" | "sha224" | "sha384" | "sha3-224" | "sha3-384" | "blake2s-256" | "blake2s-512" | "blake3-224" | "blake3-384";