Skip to content

Commit b418c51

Browse files
committed
fix: markdown table format in developers docs
1 parent 8dd4d30 commit b418c51

File tree

1 file changed

+6
-6
lines changed
  • public/content/developers/docs/data-structures-and-encoding/patricia-merkle-trie

1 file changed

+6
-6
lines changed

public/content/developers/docs/data-structures-and-encoding/patricia-merkle-trie/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,12 @@ When traversing paths in nibbles, we may end up with an odd number of nibbles to
9595

9696
The flagging of both _odd vs. even remaining partial path length_ and _leaf vs. extension node_ as described above reside in the first nibble of the partial path of any 2-item node. They result in the following:
9797

98-
hex char bits | node type partial path length
99-
----------------------------------------------------------
100-
0 0000 | extension even
101-
1 0001 | extension odd
102-
2 0010 | terminating (leaf) even
103-
3 0011 | terminating (leaf) odd
98+
| hex char | bits | node type partial | path length |
99+
| -------- | ---- | ------------------ | ----------- |
100+
| 0 | 0000 | extension | even |
101+
| 1 | 0001 | extension | odd |
102+
| 2 | 0010 | terminating (leaf) | even |
103+
| 3 | 0011 | terminating (leaf) | odd |
104104

105105
For even remaining path length (`0` or `2`), another `0` "padding" nibble will always follow.
106106

0 commit comments

Comments
 (0)