Konstantin Seiler hace 6 años
padre
commit
216bdc0f6f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      audio/src/fetch.rs

+ 1 - 1
audio/src/fetch.rs

@@ -731,7 +731,7 @@ impl AudioFileFetch {
                     // record the response time
                     self.network_response_times_ms.push(response_time_ms);
 
-                    // prone old response times. Keep at most three.
+                    // prune old response times. Keep at most three.
                     while self.network_response_times_ms.len() > 3 {
                         self.network_response_times_ms.remove(0);
                     }