From 7c65f08cd1935bc811912913ee87359a7fd44d9f Mon Sep 17 00:00:00 2001 From: Slack Coder Date: Wed, 19 Oct 2022 14:21:17 -0500 Subject: [PATCH] radicle: fix typo Correct radicle::node::Error::Connect's string. --- radicle/src/node.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radicle/src/node.rs b/radicle/src/node.rs index c34fd20b..88e8ff00 100644 --- a/radicle/src/node.rs +++ b/radicle/src/node.rs @@ -15,7 +15,7 @@ pub const DEFAULT_SOCKET_NAME: &str = "radicle.sock"; #[derive(thiserror::Error, Debug)] pub enum Error { - #[error("failed to connecto to node: {0}")] + #[error("failed to connect to node: {0}")] Connect(#[from] io::Error), }