mirror of
https://github.com/Farama-Foundation/Gymnasium.git
synced 2025-08-23 23:12:46 +00:00
typo in docs (#198)
This commit is contained in:
@@ -9,7 +9,7 @@ class EzPickle:
|
|||||||
>>> class Dog(Animal, EzPickle):
|
>>> class Dog(Animal, EzPickle):
|
||||||
... def __init__(self, furcolor, tailkind="bushy"):
|
... def __init__(self, furcolor, tailkind="bushy"):
|
||||||
... Animal.__init__()
|
... Animal.__init__()
|
||||||
... EzPickle.__init__(furcolor, tailkind)
|
... EzPickle.__init__(self, furcolor, tailkind)
|
||||||
|
|
||||||
When this object is unpickled, a new ``Dog`` will be constructed by passing the provided furcolor and tailkind into the constructor.
|
When this object is unpickled, a new ``Dog`` will be constructed by passing the provided furcolor and tailkind into the constructor.
|
||||||
However, philosophers are still not sure whether it is still the same dog.
|
However, philosophers are still not sure whether it is still the same dog.
|
||||||
|
Reference in New Issue
Block a user