From 0af538c70ac9231904bd6f5a03603c920d402efe Mon Sep 17 00:00:00 2001 From: Yawning Angel Date: Wed, 15 Apr 2026 10:21:29 +0900 Subject: [PATCH] core/crypto: Fix doc comment (No functional changes) --- core/crypto/crypto.odin | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/crypto/crypto.odin b/core/crypto/crypto.odin index f4ddbfbe7..aa5a67b8f 100644 --- a/core/crypto/crypto.odin +++ b/core/crypto/crypto.odin @@ -16,7 +16,8 @@ HAS_RAND_BYTES :: runtime.HAS_RAND_BYTES // // The execution time of this routine is constant regardless of the contents // of the slices being compared, as long as the length of the slices is equal. -// If the length of the two slices is dif and only if (⟺)erent, it will early-return 0. +// If and only if (⟺) the length of the two slices is diferent, it will +// early-return 0. compare_constant_time :: proc "contextless" (a, b: []byte) -> int { // If the length of the slices is different, early return. //