From db8f212f3d709dc24a9b7065e7dd124035159933 Mon Sep 17 00:00:00 2001 From: zancas Date: Mon, 2 Dec 2024 09:31:06 -0700 Subject: [PATCH] fix some formatting, add link --- zingo-sync/src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/zingo-sync/src/lib.rs b/zingo-sync/src/lib.rs index bad1fb3a2..da19c3aaa 100644 --- a/zingo-sync/src/lib.rs +++ b/zingo-sync/src/lib.rs @@ -1,11 +1,11 @@ #![warn(missing_docs)] //! Zingo sync engine prototype //! -//! Definitions: -//! Sync: Observation of a consensus state -//! Consensus State: Eventually consistent global agreement -//! Key-Enabled (keyed): Sync where the observer owns keys that reveal hidden information -//! Keyless: The observer doesn't have keys +//! Definitions, Subordinate to the [Zcash Protocol Specification](): +//! - Sync: Observation of a consensus state +//! - Consensus State: Eventually consistent global agreement +//! - Key-Enabled (keyed): Sync where the observer owns keys that reveal hidden information +//! - Keyless: The observer doesn't have keys //! //! Entrypoint: [`crate::sync::sync`]