[doc] Minor fix to indentation (#14040)

This commit is contained in:
Thomas J. Fan
2021-02-10 15:31:47 -05:00
committed by GitHub
parent fc89984162
commit 75fbd48edd
+2 -2
View File
@@ -92,8 +92,8 @@ Ray enables arbitrary functions to be executed asynchronously. These asynchronou
@ray.remote
def slow_function():
time.sleep(10)
return 1
time.sleep(10)
return 1
# Invocations of Ray remote functions happen in parallel.
# All computation is performed in the background, driven by Ray's internal event loop.