From e00dd75dc20091354cf338364cdca1cc2374e4bf Mon Sep 17 00:00:00 2001 From: Robert Koeninger Date: Fri, 5 Oct 2018 13:02:02 -0400 Subject: [PATCH] Made Compound Types page refer to Class Composition with Mixins instead of Abstract Types --- _tour/compound-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_tour/compound-types.md b/_tour/compound-types.md index 30e78c8b3e..494cbe7d7e 100644 --- a/_tour/compound-types.md +++ b/_tour/compound-types.md @@ -51,4 +51,4 @@ def cloneAndReset(obj: Cloneable with Resetable): Cloneable = { Compound types can consist of several object types and they may have a single refinement which can be used to narrow the signature of existing object members. The general form is: `A with B with C ... { refinement }` -An example for the use of refinements is given on the page about [abstract types](abstract-types.html). +An example for the use of refinements is given on the page about [class composition with mixins](mixin-class-composition.html).