radicle: fix typo

Correct radicle::node::Error::Connect's string.
This commit is contained in:
Slack Coder 2022-10-19 14:21:17 -05:00 committed by Alexis Sellier
parent 5f4fc8236e
commit 7c65f08cd1
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -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),
}