Update advanced.rst (#11793)

This commit is contained in:
architkulkarni
2020-11-03 16:16:36 -08:00
committed by GitHub
parent 5b788ccb13
commit 2ef707e440
+1 -1
View File
@@ -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())