summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/library/scala/Enumeration.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/Enumeration.scala b/src/library/scala/Enumeration.scala
index ea0d20957d..2b658ee4f7 100644
--- a/src/library/scala/Enumeration.scala
+++ b/src/library/scala/Enumeration.scala
@@ -113,8 +113,8 @@ abstract class Enumeration (initial: Int) extends Serializable {
* enumeration, but no higher than 0. */
private var bottomId = if(initial < 0) initial else 0
- /** The highest integer amongst those used to identify values in this
- * enumeration. */
+ /** The one higher than the highest integer amongst those used to identify
+ * values in this enumeration. */
final def maxId = topId
/** The value of this enumeration with given id `x`