From a9c0b3d6a74dddd269e8b0505987cb4388ae49f8 Mon Sep 17 00:00:00 2001 From: Naum Date: Wed, 22 Jan 2025 18:44:37 +0100 Subject: [PATCH] typo fix aleph_bft_api.md --- docs/src/aleph_bft_api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/aleph_bft_api.md b/docs/src/aleph_bft_api.md index 3e42ca7b..55895d7f 100644 --- a/docs/src/aleph_bft_api.md +++ b/docs/src/aleph_bft_api.md @@ -77,7 +77,7 @@ These traits are optional. If you do not want to recover crashes mid session or [`std::io::Write`](https://doc.rust-lang.org/std/io/trait.Write.html#) should provide a way of writing data generated during session which should be backed up. **`flush` method should block until the written data is backed up.** -[`std::io::Read`](https://doc.rust-lang.org/std/io/trait.Read.html#) should provide a way of retreiving backups of all data generated during session by this member in case of crash. **`std::io::Read` should have a copy of all data so that writing to `std::io::Write` has no effect on reading.** +[`std::io::Read`](https://doc.rust-lang.org/std/io/trait.Read.html#) should provide a way of retrieving backups of all data generated during session by this member in case of crash. **`std::io::Read` should have a copy of all data so that writing to `std::io::Write` has no effect on reading.** ### 3.2 Examples