diff --git a/packages/apalis-core/src/data.rs b/packages/apalis-core/src/data.rs index f5eec311..33cd3f9e 100644 --- a/packages/apalis-core/src/data.rs +++ b/packages/apalis-core/src/data.rs @@ -161,7 +161,7 @@ impl Extensions { self.map.as_ref().map_or(true, |map| map.is_empty()) } - /// Get the numer of extensions available. + /// Get the number of extensions available. /// /// # Example /// diff --git a/packages/apalis-sql/src/sqlite.rs b/packages/apalis-sql/src/sqlite.rs index e73983f5..dfdee047 100644 --- a/packages/apalis-sql/src/sqlite.rs +++ b/packages/apalis-sql/src/sqlite.rs @@ -392,7 +392,7 @@ impl SqliteStorage { Ok(()) } - /// Add jobs that failed back to the queue if there are still remaining attemps + /// Add jobs that failed back to the queue if there are still remaining attempts pub async fn reenqueue_failed(&self) -> Result<(), sqlx::Error> where T: Job,