From f723e756d80d68a33917f56ffcc743fc3323353d Mon Sep 17 00:00:00 2001
From: Striven <sg.striven@cutecat.club>
Date: Tue, 09 Sep 2025 22:23:17 +0000
Subject: [PATCH] Add "common structures" heading to rendezvous structures docs
---
04_rendezvous/03_rendezvous_structure.md | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/04_rendezvous/03_rendezvous_structure.md b/04_rendezvous/03_rendezvous_structure.md
index 84922c0..f0b7e8f 100644
--- a/04_rendezvous/03_rendezvous_structure.md
+++ b/04_rendezvous/03_rendezvous_structure.md
@@ -1,6 +1,8 @@
All types are in little-endian.
-## `Buffer`
+## Common Structures
+
+### `Buffer`
Example:
```
Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
@@ -14,7 +16,7 @@
The length of the data is `4`, with the bytes being: `.{ 1, 2, 3, 4 }`.
-## `String`
+### `String`
Example:
```
Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
@@ -27,7 +29,7 @@
Strings in RendezVous are null-terminated [buffers](#buffer) in UTF-8 encoding.
-## `List<T>`
+### `List<T>`
Example:
```
Offset(h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F
@@ -40,6 +42,6 @@
| Number of Items | The number of individual items in the list. | `u32` |
| Items | The items in the list. | `T[Number of Items]` |
-## `UUID`
+##' `UUID`
> TODO
\ No newline at end of file
--
Gitblit v1.10.0