From 2ef707e440e32978dabc4f4b5ade2aea67240797 Mon Sep 17 00:00:00 2001 From: architkulkarni Date: Tue, 3 Nov 2020 16:16:36 -0800 Subject: [PATCH] Update advanced.rst (#11793) --- doc/source/advanced.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/advanced.rst b/doc/source/advanced.rst index 14fa2c61a..742fbfa68 100644 --- a/doc/source/advanced.rst +++ b/doc/source/advanced.rst @@ -77,7 +77,7 @@ When you have multiple tasks that need to wait on some condition, you can use a signal = SignalActor.remote() tasks = [wait_and_go.remote(signal) for _ in range(4)] print("ready...") - # Tasks will all be waiting for the singals. + # Tasks will all be waiting for the signals. print("set..") ray.get(signal.send.remote())