From 6dc6d2b1e39d1ad78bc2672f29a8880303a266be Mon Sep 17 00:00:00 2001 From: Patrick Flynn Date: Wed, 27 Aug 2025 14:47:42 +0100 Subject: [PATCH] Fix comment formatting in README.md --- vindex/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vindex/README.md b/vindex/README.md index a18ea07..6662454 100644 --- a/vindex/README.md +++ b/vindex/README.md @@ -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)