From 771d47af451016b9eba174791de64cdeac6c7919 Mon Sep 17 00:00:00 2001 From: Mikael Blomstrand Date: Fri, 4 Dec 2020 13:34:17 +0100 Subject: [PATCH] Update enums.md: Change super => transparent This must have been missed in changing super to transparent --- docs/docs/reference/enums/enums.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/reference/enums/enums.md b/docs/docs/reference/enums/enums.md index 5e36cedfefe5..acf47d017fe5 100644 --- a/docs/docs/reference/enums/enums.md +++ b/docs/docs/reference/enums/enums.md @@ -120,7 +120,7 @@ This trait defines a single public method, `ordinal`: package scala.reflect /** A base trait of all Scala enum definitions */ -super trait Enum extends Any with Product with Serializable { +transparent trait Enum extends Any with Product with Serializable { /** A number uniquely identifying a case of an enum */ def ordinal: Int