From 464537db62e1d4ca6bc1357135b0f6c451e48c17 Mon Sep 17 00:00:00 2001 From: bing Date: Sun, 14 Jul 2024 21:34:02 +0800 Subject: [PATCH] std.crypto.ff: fix typo in `montgomery` boolean documentation (#20624) --- lib/std/crypto/ff.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/std/crypto/ff.zig b/lib/std/crypto/ff.zig index 10c4402a4f..95698783bd 100644 --- a/lib/std/crypto/ff.zig +++ b/lib/std/crypto/ff.zig @@ -305,7 +305,7 @@ fn Fe_(comptime bits: comptime_int) type { /// The element value as a `Uint`. v: FeUint, - /// `true` is the element is in Montgomery form. + /// `true` if the element is in Montgomery form. montgomery: bool = false, /// The maximum number of bytes required to encode a field element.