mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
docs: Readability fixes in src/analytics/.rs
files
Signed-off-by: Ryan Russell <git@ryanrussell.org>
This commit is contained in:
parent
07a35c6445
commit
8990b12609
2 changed files with 4 additions and 4 deletions
|
@ -495,7 +495,7 @@ impl SearchAggregator {
|
|||
let percentile_99th = 0.99 * (self.total_succeeded as f64 - 1.) + 1.;
|
||||
// we get all the values in a sorted manner
|
||||
let time_spent = self.time_spent.into_sorted_vec();
|
||||
// We are only intersted by the slowest value of the 99th fastest results
|
||||
// We are only interested by the slowest value of the 99th fastest results
|
||||
let time_spent = time_spent.get(percentile_99th as usize);
|
||||
|
||||
let properties = json!({
|
||||
|
@ -574,8 +574,8 @@ impl DocumentsAggregator {
|
|||
let content_type = request
|
||||
.headers()
|
||||
.get(CONTENT_TYPE)
|
||||
.map(|s| s.to_str().unwrap_or("unkown"))
|
||||
.unwrap_or("unkown")
|
||||
.map(|s| s.to_str().unwrap_or("unknown"))
|
||||
.unwrap_or("unknown")
|
||||
.to_string();
|
||||
ret.content_types.insert(content_type);
|
||||
ret.index_creation = index_creation;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue