Commit e2cc6910 authored by Tyler Neely's avatar Tyler Neely

Fix readme.

parent 163398cc
...@@ -114,12 +114,12 @@ fn concat_merge(new_key: &[u8], existing_val: Option<&[u8]>, ...@@ -114,12 +114,12 @@ fn concat_merge(new_key: &[u8], existing_val: Option<&[u8]>,
let mut result: Vec<u8> = Vec::with_capacity(operands.size_hint().0); let mut result: Vec<u8> = Vec::with_capacity(operands.size_hint().0);
existing_val.map(|v| { existing_val.map(|v| {
for e in v { for e in v {
result.push(e) result.push(*e)
} }
}); });
for op in operands { for op in operands {
for e in op { for e in op {
result.push(e) result.push(*e)
} }
} }
result result
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment