From 158567b952d7e7d7d0dde5cb6dcce0eca45d91b5 Mon Sep 17 00:00:00 2001 From: Adam Ochayon Date: Mon, 12 Aug 2019 11:16:16 +0300 Subject: [PATCH] Rename function to make actor example correct (#5432) --- doc/source/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/index.rst b/doc/source/index.rst index a9f58db24..70c28fade 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -47,7 +47,7 @@ To use Ray's actor model: def __init__(self): self.n = 0 - def inc(self): + def increment(self): self.n += 1 def read(self):