diff options
-rw-r--r-- | components/profile/time.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/profile/time.rs b/components/profile/time.rs index 39589536eac..e6cb6d45f59 100644 --- a/components/profile/time.rs +++ b/components/profile/time.rs @@ -340,7 +340,7 @@ impl Profiler { (data.iter().sum::<f64>() / (data_len as f64), data[data_len / 2], data[0], - data[data_len-1]); + data[data_len - 1]); (mean, median, min, max) } |