diff --git a/quickwit/quickwit-directories/src/hot_directory.rs b/quickwit/quickwit-directories/src/hot_directory.rs index 2019505b542..d8c4609ee01 100644 --- a/quickwit/quickwit-directories/src/hot_directory.rs +++ b/quickwit/quickwit-directories/src/hot_directory.rs @@ -518,7 +518,7 @@ pub fn write_hotcache( for byte_range in intervals { let len = byte_range.len(); // We do not want to store slices that are too large in the hotcache, - // but on the other hand, the term dictionray index and the docstore + // but on the other hand, the term dictionary index and the docstore // index are required for quickwit to work. // // Warning: we need to work on string here because `Path::ends_with` diff --git a/quickwit/quickwit-storage/src/timeout_and_retry_storage.rs b/quickwit/quickwit-storage/src/timeout_and_retry_storage.rs index f8c665217c5..e627a51dd2a 100644 --- a/quickwit/quickwit-storage/src/timeout_and_retry_storage.rs +++ b/quickwit/quickwit-storage/src/timeout_and_retry_storage.rs @@ -30,7 +30,7 @@ use crate::{BulkDeleteError, PutPayload, Storage, StorageErrorKind, StorageResul /// takes too long. /// /// This is useful in order to ensure a low latency on S3. -/// Retrying agressively is recommended for S3. +/// Retrying aggressively is recommended for S3. /// /// #[derive(Clone, Debug)]