From e266008445a490d90f3587b5fd2192e8e557ae0b Mon Sep 17 00:00:00 2001 From: Ben Deane Date: Wed, 3 Sep 2025 11:28:43 -0600 Subject: [PATCH] :books: Fix typo in message docs Problem: - A field is incorrectly located. Solution: - Fix it. Note: - From https://github.com/intel/compile-time-init-build/pull/764#discussion_r2319690775 --- docs/message.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/message.adoc b/docs/message.adoc index 92cddbdf..cf25bbb7 100644 --- a/docs/message.adoc +++ b/docs/message.adoc @@ -172,7 +172,7 @@ repetition. For example, adding a payload message to a header: using type_f = field<"type", std::uint32_t>::located; using header_defn = message<"header", type_f>; -using data_f = field<"data", std::uint32_t>::located; +using data_f = field<"data", std::uint32_t>::located; using payload_defn = message<"payload", data_f>; using msg_defn = extend<