diff --git a/git-cliff-core/src/commit.rs b/git-cliff-core/src/commit.rs index ba5139695d..a6005cf8e0 100644 --- a/git-cliff-core/src/commit.rs +++ b/git-cliff-core/src/commit.rs @@ -189,7 +189,7 @@ impl Commit<'_> { /// /// * converts commit to a conventional commit /// * sets the group for the commit - /// * extacts links and generates URLs + /// * extracts links and generates URLs pub fn process(&self, config: &GitConfig) -> Result { let mut commit = self.clone(); if let Some(preprocessors) = &config.commit_preprocessors { diff --git a/git-cliff-core/src/remote/mod.rs b/git-cliff-core/src/remote/mod.rs index f4bf29c982..626e1d26f7 100644 --- a/git-cliff-core/src/remote/mod.rs +++ b/git-cliff-core/src/remote/mod.rs @@ -63,7 +63,7 @@ pub(crate) const USER_AGENT: &str = /// Request timeout value in seconds. pub(crate) const REQUEST_TIMEOUT: u64 = 30; -/// TCP keeplive value in seconds. +/// TCP keepalive value in seconds. pub(crate) const REQUEST_KEEP_ALIVE: u64 = 60; /// Maximum number of entries to fetch in a single page.