From 7ea26fe91317f65c5bb51ee40962268f50aa8f78 Mon Sep 17 00:00:00 2001 From: Benno Zeeman Date: Wed, 27 Nov 2024 11:24:53 +0100 Subject: [PATCH] docs(autonomi): fix timeout doc --- autonomi/src/client/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autonomi/src/client/mod.rs b/autonomi/src/client/mod.rs index c4a2919347..31e0194eb3 100644 --- a/autonomi/src/client/mod.rs +++ b/autonomi/src/client/mod.rs @@ -82,7 +82,7 @@ pub enum ConnectError { impl Client { /// Connect to the network. /// - /// This will timeout after 20 seconds. (See [`CONNECT_TIMEOUT_SECS`].) + /// This will timeout after [`CONNECT_TIMEOUT_SECS`] secs. /// /// ```no_run /// # use autonomi::client::Client;