From 7534be2bd8b6054c184489c9bbf991141a220b78 Mon Sep 17 00:00:00 2001 From: Raiyan Kamal Date: Tue, 15 Sep 2020 21:54:27 -0400 Subject: [PATCH] comment for clarity --- docs/generating-custom-load-shape.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/generating-custom-load-shape.rst b/docs/generating-custom-load-shape.rst index bb49eddd6b..2e7657779d 100644 --- a/docs/generating-custom-load-shape.rst +++ b/docs/generating-custom-load-shape.rst @@ -27,6 +27,7 @@ This shape class will increase user count in blocks of 100 and then stop the loa run_time = self.get_run_time() if run_time < self.time_limit: + # User count rounded to nearest hundred. user_count = round(run_time, -2) return (user_count, spawn_rate)