Skip to content

Fix typos in comments #5812

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion quickwit/quickwit-directories/src/hot_directory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ pub fn write_hotcache<D: Directory>(
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`
Expand Down
2 changes: 1 addition & 1 deletion quickwit/quickwit-storage/src/timeout_and_retry_storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
///
/// <https://docs.aws.amazon.com/whitepapers/latest/s3-optimizing-performance-best-practices/timeouts-and-retries-for-latency-sensitive-applications.html>
#[derive(Clone, Debug)]
Expand Down