From: Richard Levitte Date: Wed, 8 Oct 2025 13:29:09 +0000 (+0200) Subject: Fix spelling in doc/designs/fixed-size-large-numbers.md X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cfee88d925895b08c21902259af9641d2a27eee4;p=thirdparty%2Fopenssl.git Fix spelling in doc/designs/fixed-size-large-numbers.md Found by codespell. payed → paid Reviewed-by: Frederik Wedel-Heinen Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/28787) --- diff --git a/doc/designs/fixed-size-large-numbers.md b/doc/designs/fixed-size-large-numbers.md index dbcf3640ee8..82c87a38a2b 100644 --- a/doc/designs/fixed-size-large-numbers.md +++ b/doc/designs/fixed-size-large-numbers.md @@ -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.