]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix spelling in doc/designs/fixed-size-large-numbers.md
authorRichard Levitte <levitte@openssl.org>
Wed, 8 Oct 2025 13:29:09 +0000 (15:29 +0200)
committerRichard Levitte <levitte@openssl.org>
Wed, 8 Oct 2025 13:29:09 +0000 (15:29 +0200)
Found by codespell.

payed → paid

Reviewed-by: Frederik Wedel-Heinen <fwh.openssl@gmail.com>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/28787)

doc/designs/fixed-size-large-numbers.md

index dbcf3640ee8979e5bb8d48b553c1f58943b7a2f7..82c87a38a2b30874750efc7a5102f97af33f2c4f 100644 (file)
@@ -690,7 +690,7 @@ struct t {
 };
 ```
 
-Some attention must be payed to how it's arranged in memory.  It's debated
+Some attention must be paid to how it's arranged in memory.  It's debated
 whether the offset of a flexible array member's offset from the start of the
 `struct` is set to be before or after the `struct`'s end padding, i.e. whether
 `sizeof(struct t) == offsetof(struct t, c)` is true or not in all circumstances.