From fb97cb6da5c5db7f7aa964ddbaae6c6bb8bc4e50 Mon Sep 17 00:00:00 2001 From: Saket <52213128+saket04@users.noreply.github.com> Date: Wed, 30 Sep 2020 20:36:57 +0530 Subject: [PATCH] update timer.py --- timer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/timer.py b/timer.py index d2be915..07f8c39 100644 --- a/timer.py +++ b/timer.py @@ -43,7 +43,7 @@ def bestof(reps, func, *pargs, **kargs): def bestoftotal(reps1, reps2, func, *pargs, **kargs): """ - Best of totals: + It will give best of total: (best of reps1 runs of (total of reps2 runs of func)) """ return bestof(reps1, total, reps2, func, *pargs, **kargs)