Rename function to make actor example correct (#5432)

This commit is contained in:
Adam Ochayon
2019-08-12 11:16:16 +03:00
committed by Richard Liaw
parent 61b23a9a70
commit 158567b952
+1 -1
View File
@@ -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):