Skip to content

Commit e2553a5

Browse files
authored
Merge pull request #15520 from JoeChenJ/Fix_md_table_format
fix: markdown table format in developers docs
2 parents eb88e50 + b418c51 commit e2553a5

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)