From 6aa442596dd830618af3ff209fdd08a759089992 Mon Sep 17 00:00:00 2001 From: Jeffrey Czyz Date: Thu, 6 Jan 2022 11:04:59 -0600 Subject: [PATCH] f - Use #[doc(hidden)] --- lightning/src/routing/scoring.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lightning/src/routing/scoring.rs b/lightning/src/routing/scoring.rs index 2d534fa31..627b3dd0a 100644 --- a/lightning/src/routing/scoring.rs +++ b/lightning/src/routing/scoring.rs @@ -211,14 +211,13 @@ type ConfiguredTime = time::Eternity; /// [`Score`] implementation. /// -/// See [`Scorer`] for details. -/// /// # Note /// /// Mixing the `no-std` feature between serialization and deserialization results in undefined /// behavior. /// /// (C-not exported) generally all users should use the [`Scorer`] type alias. +#[doc(hidden)] pub struct ScorerUsingTime { params: ScoringParameters, // TODO: Remove entries of closed channels. @@ -467,14 +466,13 @@ pub type ProbabilisticScorer = ProbabilisticScorerUsingTime::, T: Time> { params: ProbabilisticScoringParameters, node_id: NodeId, -- 2.39.5