Skip to content

Commit bfff04e

Browse files
committed
Fix typos
1 parent 14e6abc commit bfff04e

File tree

2 files changed

+2
-2
lines changed
  • quickwit
    • quickwit-config/src/source_config
    • quickwit-indexing/src/source/queue_sources

2 files changed

+2
-2
lines changed

quickwit/quickwit-config/src/source_config/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ impl PulsarSourceParams {
586586
fn validate_update(&self, _other: &Self) -> anyhow::Result<()> {
587587
// In the Pulsar source, we use use combinations of the topic+partition
588588
// (generated by the Pulsar client library) as metastore checkpoint
589-
// PartitionId, and those are guarantied to be unique across topics.
589+
// PartitionId, and those are "guaranteed" to be unique across topics.
590590
Ok(())
591591
}
592592
}

quickwit/quickwit-indexing/src/source/queue_sources/sqs_queue.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ pub mod test_helpers {
321321
/// Runs a mock SQS GetQueueAttributes endpoint to enable creating SQS
322322
/// sources that pass the connectivity check
323323
///
324-
/// Rerturns the queue URL to use for the source and a guard for the
324+
/// Returns the queue URL to use for the source and a guard for the
325325
/// temporary mock server
326326
pub fn start_mock_sqs_get_queue_attributes_endpoint() -> (String, oneshot::Sender<()>) {
327327
let hello = warp::path!().map(|| "{}");

0 commit comments

Comments
 (0)