aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--proposals/319-wide-everything.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/proposals/319-wide-everything.md b/proposals/319-wide-everything.md
index a7b9b8a..29f65bb 100644
--- a/proposals/319-wide-everything.md
+++ b/proposals/319-wide-everything.md
@@ -33,8 +33,9 @@ We add a new relay cell type: `RELAY_FRAGMENT`. This cell type contains part
of another relay cell. A `RELAY_FRAGEMENT` cell can either introduce a new
fragmented cell, or can continue one that is already in progress.
-The format of a RELAY_FRAGMENT body is one the following:
+The format of a RELAY_FRAGMENT body is one of the following:
+ // First body in a series
struct fragment_begin {
// What relay_command is in use for the underlying cell?
u8 relay_command;
@@ -44,6 +45,7 @@ The format of a RELAY_FRAGMENT body is one the following:
u8 body[];
}
+ // all other cells.
struct fragment_continued {
// More bytes for the cell body.
u8 body[];