diff --git a/pretext/Inheritance/04-ReuseThroughComposition.ptx b/pretext/Inheritance/04-ReuseThroughComposition.ptx index c06963cc3..281b88c5a 100644 --- a/pretext/Inheritance/04-ReuseThroughComposition.ptx +++ b/pretext/Inheritance/04-ReuseThroughComposition.ptx @@ -38,7 +38,7 @@ print(p.distanceFromOrigin())
The first thing to notice about this version of LabeledPoint
- does not inherit from Point. Instead, its constructor
+ is that it does not inherit from Point. Instead, its constructor
instantiates a Point and stores a reference to it in its
Next, notice how the