[06/17] event: Fix typo "occasionally"

Message ID 20220219164021.8344-6-zygmunt.krynicki@huawei.com
State New
Headers show
Series [01/17] cooker: Fix typo "isn't" | expand

Commit Message

Zygmunt Krynicki Feb. 19, 2022, 4:40 p.m. UTC
Signed-off-by: Zygmunt Krynicki <zygmunt.krynicki@huawei.com>
---
 lib/bb/event.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/lib/bb/event.py b/lib/bb/event.py
index c81e79f7..89215e3d 100644
--- a/lib/bb/event.py
+++ b/lib/bb/event.py
@@ -40,7 +40,7 @@  class HeartbeatEvent(Event):
     """Triggered at regular time intervals of 10 seconds. Other events can fire much more often
        (runQueueTaskStarted when there are many short tasks) or not at all for long periods
        of time (again runQueueTaskStarted, when there is just one long-running task), so this
-       event is more suitable for doing some task-independent work occassionally."""
+       event is more suitable for doing some task-independent work occasionally."""
     def __init__(self, time):
         Event.__init__(self)
         self.time = time