From 7d2094d52bedb4400031ac12a96a80307b61a0d5 Mon Sep 17 00:00:00 2001 From: Jake Turner Date: Sun, 12 Nov 2023 12:10:41 +0000 Subject: [PATCH] Add a link to "below section" to the buffer viewer struct docs --- docs/how/how_buffer_format.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/how/how_buffer_format.rst b/docs/how/how_buffer_format.rst index 708c62fd8..7bec88911 100644 --- a/docs/how/how_buffer_format.rst +++ b/docs/how/how_buffer_format.rst @@ -162,7 +162,7 @@ The buffer format supports annotations on declarations to specify special proper Struct definitions support the following annotations: * ``[[size(number)]]`` or ``[[byte_size(number)]]`` - Forces the struct to be padded up to a given size even if the contents don't require it. -* ``[[single]]`` or ``[[fixed]]`` - Forces the struct to be considered as a fixed SoA definition, even if in context the buffer viewer may default to AoS. See the below section for more details. Structs with this annotation **may not** be declared as a variable, and should instead be the implicit final struct in a definition. +* ``[[single]]`` or ``[[fixed]]`` - Forces the struct to be considered as a fixed SoA definition, even if in context the buffer viewer may default to AoS. See :ref:`the below section ` for more details. Structs with this annotation **may not** be declared as a variable, and should instead be the implicit final struct in a definition. Variable declarations support the following annotations: