Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
[DATALAD RUNCMD] chore: run codespell throughout fixing a few typos interactively
Yaroslav Halchenko committed 6 months ago
commit 355f135d718c9b29a6aad82161a604702aae8783
parent 166b46be69db05433afa1c88f8a1347f01645421
4 files changed +4 -4
modified crates/radicle-protocol/src/service.rs
@@ -660,7 +660,7 @@ where
            Ok(Some(last)) => Some(last.to_local_time()),
            Ok(None) => None,
            Err(e) => {
-
                error!(target: "service", "Error getting the lastest gossip message from db: {e}");
+
                error!(target: "service", "Error getting the latest gossip message from db: {e}");
                None
            }
        };
modified crates/radicle-ssh/src/encoding.rs
@@ -54,7 +54,7 @@ pub trait Encoding {
    fn write_len(&mut self);
    /// Push a [`usize`] as an SSH-encoded unsiged 32-bit integer.
    /// May panic if the argument is greater than [`u32::MAX`].
-
    /// This is a convience method, to spare callers casting or converting
+
    /// This is a convenience method, to spare callers casting or converting
    /// [`usize`] to [`u32`]. If callers end up in a situation where they
    /// need to push a 32-bit unisgned integer, but the value they would
    /// like to push does not fit 32 bits, then the implementation will not
modified crates/radicle/src/node/config.rs
@@ -251,7 +251,7 @@ pub struct ConnectionLimits {
    pub outbound: LimitConnectionsOutbound,
}

-
/// Rate limts for a single connection.
+
/// Rate limits for a single connection.
#[derive(Debug, Clone, Serialize, Deserialize, Display)]
#[display("RateLimit(fill_rate={fill_rate}, capacity={capacity})")]
#[serde(rename_all = "camelCase")]
modified crates/radicle/src/storage/git/transport/local/url.rs
@@ -31,7 +31,7 @@ pub enum UrlError {
/// A git local transport URL.
///
/// * Used to content-address a repository, eg. when sharing projects.
-
/// * Used as a remore url in a git working copy.
+
/// * Used as a remote url in a git working copy.
///
/// `rad://<repo>[/<namespace>]`
///