File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -638,10 +638,10 @@ class CricketFan(PartyAnimal):
638
638
method in the <code>CricketFan</code> class, we call the
639
639
<code>party</code> method from the <code>PartyAnimal</code> class.</p>
640
640
<p>We use a special syntax in the <code>__init__()</code> method in the
641
- <code>CricketFan</code> class to insure that we call the
642
- <code>__init()__ </code> method in the <code>PartyAnimal</code> so that
641
+ <code>CricketFan</code> class to ensure that we call the
642
+ <code>__init__() </code> method in the <code>PartyAnimal</code> so that
643
643
whatever setup that <code>PartyAnimal</code> needs is done in addition
644
- to the setup needed for the <code>CriocketFan </code> extensions.</p>
644
+ to the setup needed for the <code>CricketFan </code> extensions.</p>
645
645
<pre class="python"><code> def __init__(self, nam) :
646
646
super().__init__(nam)
647
647
self.points = 0</code></pre>
You can’t perform that action at this time.
0 commit comments