diff --git a/erigon-lib/kv/Readme.md b/erigon-lib/kv/Readme.md index cf98fc4ba..4075fce01 100644 --- a/erigon-lib/kv/Readme.md +++ b/erigon-lib/kv/Readme.md @@ -115,7 +115,7 @@ return err - method Begin DOESN'T create new TxDb object, it means this object can be passed into other objects by pointer, and high-level app code can start/commit transactions when it needs without re-creating all objects which holds TxDb pointer. -- This is reason why txDb.CommitAndBegin() method works: inside it creating new transaction object, pinter to TxDb stays +- This is reason why txDb.CommitAndBegin() method works: inside it creating new transaction object, pointer to TxDb stays valid. ## How to dump/load table diff --git a/ethdb/Readme.md b/ethdb/Readme.md index 86350e59f..4624a6d65 100644 --- a/ethdb/Readme.md +++ b/ethdb/Readme.md @@ -127,7 +127,7 @@ for k, v, err := c.First(); k != nil; k, v, err = c.Next() { - method Begin DOESN'T create new TxDb object, it means this object can be passed into other objects by pointer, and high-level app code can start/commit transactions when it needs without re-creating all objects which holds TxDb pointer. -- This is the reason why txDb.CommitAndBegin() method works: inside it creating new transaction object, pinter to TxDb stays valid. +- This is the reason why txDb.CommitAndBegin() method works: inside it creating new transaction object, pointer to TxDb stays valid. ## How to dump/load table