From 61b43c7df442d6829b4c1bf9fba176cad9a2347c Mon Sep 17 00:00:00 2001 From: Felix Yan Date: Fri, 15 Jun 2018 01:11:46 +0800 Subject: [PATCH] Fix some typos in events.py (#820) --- locust/events.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/locust/events.py b/locust/events.py index de049f97b4..82c496fc14 100644 --- a/locust/events.py +++ b/locust/events.py @@ -113,14 +113,14 @@ def fire(self, reverse=False, **kwargs): """ *master_start_hatching* is fired when we initiate the hatching process on the master. -This event is especially usefull to detect when the 'start' button is clicked on the web ui. +This event is especially useful to detect when the 'start' button is clicked on the web ui. """ master_stop_hatching = EventHook() """ *master_stop_hatching* is fired when terminate the hatching process on the master. -This event is especially usefull to detect when the 'stop' button is clicked on the web ui. +This event is especially useful to detect when the 'stop' button is clicked on the web ui. """ locust_start_hatching = EventHook()