diff --git a/giambio/core.py b/giambio/core.py index 9c1f004..35329a1 100644 --- a/giambio/core.py +++ b/giambio/core.py @@ -644,7 +644,6 @@ class AsyncScheduler: self.run_ready = deque() self.suspended = deque() - def reschedule_joiners(self, task: Task): """ Reschedules the parent(s) of the diff --git a/giambio/sync.py b/giambio/sync.py index badd2d7..82c6732 100644 --- a/giambio/sync.py +++ b/giambio/sync.py @@ -43,7 +43,7 @@ class Event: async def trigger(self, value: Optional[Any] = None): """ Sets the event, waking up all tasks that called - pause() on it + wait() on it """ if self.set: