Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion vindex/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ This would be used similarly to:
var i uint64 // the index currently being processed. Needs to be set to non-zero if log started mid-way through.
var log chan []byte // channel on which leaves from the log will be written
var mapFn MapFn // initialized somehow (maybe loading wasm)
var output func(i uint64, mapKeys ...[][]byte) // probably just writes the the write ahead log
var output func(i uint64, mapKeys ...[][]byte) // probably just writes the write ahead log

for leaf := <- log {
mapKeys := mapFn(leaf)
Expand Down
Loading