diff --git a/gym/spaces/space.py b/gym/spaces/space.py index 4a41cdae1..b2b15e6e4 100644 --- a/gym/spaces/space.py +++ b/gym/spaces/space.py @@ -14,7 +14,8 @@ class Space(object): self.seed() def sample(self): - """Uniformly randomly sample a random element of this space. """ + """Randomly sample an element of this space. Can be + uniform or non-uniform sampling based on boundedness of space.""" raise NotImplementedError def seed(self, seed=None):