From 75fbd48edda341514371b1af0258a7c4d1f826d1 Mon Sep 17 00:00:00 2001 From: "Thomas J. Fan" Date: Wed, 10 Feb 2021 15:31:47 -0500 Subject: [PATCH] [doc] Minor fix to indentation (#14040) --- doc/source/walkthrough.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/walkthrough.rst b/doc/source/walkthrough.rst index 77e033a99..ec0f0ec3a 100644 --- a/doc/source/walkthrough.rst +++ b/doc/source/walkthrough.rst @@ -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.