File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
quickwit-config/src/source_config Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -498,7 +498,7 @@ impl KinesisSourceParams {
498498 fn validate_update ( & self , other : & Self ) -> anyhow:: Result < ( ) > {
499499 // Changing the stream would likely mess up the checkpoints because the
500500 // Kinesis shard IDs are used as metastore checkpoint PartitionId, and
501- // there uniqueness is only guarantied within a stream.
501+ // there uniqueness is only guaranteed within a stream.
502502 ensure ! (
503503 self . stream_name == other. stream_name,
504504 "Kinesis stream_name cannot be updated"
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ use tantivy::aggregation::metric::{
3030// hopefully all From in this module are no-ops, otherwise, this is a very sad situation
3131
3232#[ derive( Clone , Debug , Serialize , Deserialize ) ]
33- /// The final aggegation result.
33+ /// The final aggregation result.
3434pub struct AggregationResults ( pub Vec < ( String , AggregationResult ) > ) ;
3535
3636impl From < TantivyAggregationResults > for AggregationResults {
You can’t perform that action at this time.
0 commit comments