From 784f320e12721761af494816cf07ed08d00deced Mon Sep 17 00:00:00 2001 From: gingerBill Date: Tue, 18 Nov 2025 12:11:29 +0000 Subject: [PATCH] Fix indentation in comments --- core/crypto/siphash/siphash.odin | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/crypto/siphash/siphash.odin b/core/crypto/siphash/siphash.odin index 5fede4f55..fb1d42d49 100644 --- a/core/crypto/siphash/siphash.odin +++ b/core/crypto/siphash/siphash.odin @@ -10,11 +10,11 @@ See: package siphash /* - Copyright 2022 zhibog - Made available under Odin's license. + Copyright 2022 zhibog + Made available under Odin's license. - List of contributors: - zhibog: Initial implementation. + List of contributors: + zhibog: Initial implementation. */ import "core:crypto" @@ -22,7 +22,7 @@ import "core:encoding/endian" import "core:math/bits" /* - High level API + High level API */ KEY_SIZE :: 16 @@ -215,7 +215,7 @@ verify_4_8 :: proc { } /* - Low level API + Low level API */ init :: proc(ctx: ^Context, key: []byte, c_rounds, d_rounds: int) {