From 55fcda0650c74123f099c6fffde00d1479bb4860 Mon Sep 17 00:00:00 2001 From: Jason Yellick <7431583+jyellick@users.noreply.github.com> Date: Mon, 13 Mar 2023 20:03:09 -0400 Subject: [PATCH] Fix broken link in doc (#7094) The doc in [dupsort.md](https://github.com/ledgerwatch/erigon/blob/devel/docs/programmers_guide/dupsort.md#erigon) points to a non-existent `AbstractKV.md` As best as I can tell, the `AbstractKV.md` was reworked and renamed in commit 0bc61c06edd1d2de3d9376736e0e4f4f4e7b9ed1 then, this was later moved into erigon-lib. This commit simply repoints the doc at this new location. Co-authored-by: Jason Yellick --- docs/programmers_guide/dupsort.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/programmers_guide/dupsort.md b/docs/programmers_guide/dupsort.md index a874b2958d4..e6c14c42469 100644 --- a/docs/programmers_guide/dupsort.md +++ b/docs/programmers_guide/dupsort.md @@ -153,7 +153,8 @@ Erigon This article target is to show tricky concepts on examples. Future reading [here](./db_walkthrough.MD#table-history-of-accounts) -Erigon supports multiple typed cursors, see [AbstractKV.md](./../../ethdb/AbstractKV.md) +Erigon supports multiple typed cursors, see the [KV +Readme.md](https://github.com/ledgerwatch/erigon-lib/tree/main/kv)