diff options
author | Malisa Smith <malisa.tsmith@gmail.com> | 2016-07-07 13:29:58 -0700 |
---|---|---|
committer | Malisa Smith <malisa.tsmith@gmail.com> | 2016-07-07 13:29:58 -0700 |
commit | 1a1d8daede5eb0f6c59e61eb1f83416bbc723ecc (patch) | |
tree | d6cd17f44955fe379f7e641f09d4112e194ae004 | |
parent | 854cb5839fbf8fa5a4d9d58ecdf260f7740faff0 (diff) | |
download | servo-1a1d8daede5eb0f6c59e61eb1f83416bbc723ecc.tar.gz servo-1a1d8daede5eb0f6c59e61eb1f83416bbc723ecc.zip |
added spaces around - sign
-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) } |