[docs] Various fixes to the docs

This commit is contained in:
Alekos Filini
2020-12-10 11:38:42 +01:00
parent a1db9f633b
commit 9bafdfe2d4
5 changed files with 14 additions and 6 deletions

View File

@@ -95,7 +95,7 @@ pub trait BlockchainMarker {}
/// The [`BlockchainMarker`] marker trait is automatically implemented for [`Blockchain`] types
impl<T: Blockchain> BlockchainMarker for T {}
/// Type that only implements [`Blockchain`] and is always "offline"
/// Type that only implements [`BlockchainMarker`] and is always "offline"
pub struct OfflineBlockchain;
impl BlockchainMarker for OfflineBlockchain {}