From 37d6c03026e3bcd497df30168df5d850b559b29d Mon Sep 17 00:00:00 2001 From: Alexis Sellier Date: Thu, 25 May 2023 13:09:55 +0200 Subject: [PATCH] radicle: Fix a documentation issue --- radicle/src/node.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/radicle/src/node.rs b/radicle/src/node.rs index 63dccf6c..46fbefa6 100644 --- a/radicle/src/node.rs +++ b/radicle/src/node.rs @@ -245,7 +245,7 @@ impl Seeds { } } -/// Announcement result returned by [`announce`]. +/// Announcement result returned by [`Node::announce`]. pub struct AnnounceResult { /// Nodes that timed out. pub timeout: Vec, @@ -253,7 +253,7 @@ pub struct AnnounceResult { pub synced: Vec, } -/// A sync event, emitted by [`announce`]. +/// A sync event, emitted by [`Node::announce`]. pub enum AnnounceEvent { /// Refs were synced with the given node. RefsSynced { remote: NodeId },