From 98a3d7ebed8237246b78aaf4f95c19748fbb47e0 Mon Sep 17 00:00:00 2001 From: Lars Holmberg Date: Tue, 19 May 2020 14:33:22 +0200 Subject: [PATCH] Undo accidentally removed ReStructuredText syntax in comment --- locust/user/wait_time.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locust/user/wait_time.py b/locust/user/wait_time.py index 7082a35daa..1722027add 100644 --- a/locust/user/wait_time.py +++ b/locust/user/wait_time.py @@ -34,7 +34,7 @@ def constant_pacing(wait_time): execution equal to the time specified by the wait_time argument. In the following example the task will always be executed once every second, no matter - the task execution time: + the task execution time:: class MyUser(User): wait_time = constant_pacing(1)