diff --git a/src/page/Home.js b/src/page/Home.js
index 043421a..faf0ff6 100644
--- a/src/page/Home.js
+++ b/src/page/Home.js
@@ -376,7 +376,7 @@ def map(f: a -> b \\ ef, l: LazyList[a]): LazyList[b] \\ ef =
- {`class Eq[a] {
+ {`trait Eq[a] {
def eq(x: a, y: a): Bool
def neq(x: a, y: a): Bool = not Eq.eq(x, y)
}
@@ -394,7 +394,7 @@ instance Eq[(a1, a2)] with Eq[a1], Eq[a2] {
- {`class Foldable[t : Type -> Type] {
+ {`trait Foldable[t : Type -> Type] {
///
/// Left-associative fold of a structure.