From c7f3b8c4d3f9ebb1fa14e9bd2542ce13a51a7a27 Mon Sep 17 00:00:00 2001 From: Alok Singh <8325708+alok@users.noreply.github.com> Date: Sat, 12 May 2018 09:36:45 -0700 Subject: [PATCH] Fix typo in tune. (#2046) Fix typo in tune. --- python/ray/tune/trainable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/tune/trainable.py b/python/ray/tune/trainable.py index 03976300e..a801b89f5 100644 --- a/python/ray/tune/trainable.py +++ b/python/ray/tune/trainable.py @@ -112,7 +112,7 @@ class Trainable(object): Subclasses should override ``_train()`` instead to return results. This method auto-fills many fields, so only ``timesteps_this_iter`` - is requied to be present. + is required to be present. Returns: A TrainingResult that describes training progress.