Format the 'trie_node' record

This commit is contained in:
Feng Lee 2017-11-17 20:55:57 +08:00
parent 1545e18cd9
commit d41fd94abb
1 changed files with 4 additions and 4 deletions

View File

@ -17,10 +17,10 @@
-type(trie_node_id() :: binary() | atom()). -type(trie_node_id() :: binary() | atom()).
-record(trie_node, -record(trie_node,
{ node_id :: trie_node_id(), { node_id :: trie_node_id(),
edge_count = 0 :: non_neg_integer(), edge_count = 0 :: non_neg_integer(),
topic :: binary() | undefined, topic :: binary() | undefined,
flags :: [retained | static] flags :: [retained | static]
}). }).
-record(trie_edge, -record(trie_edge,