summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorxuwei-k <6b656e6a69@gmail.com>2014-01-09 04:39:27 +0900
committerxuwei-k <6b656e6a69@gmail.com>2014-01-09 04:45:20 +0900
commit7f16e4d1c506960870a517ab13798a332ded62a9 (patch)
tree9f7ee92109530b4bb77b4527aebda2d59afa85b8 /src
parent4e4c15177b92ef25f098277dcce3f874c24640b2 (diff)
downloadscala-7f16e4d1c506960870a517ab13798a332ded62a9.tar.gz
scala-7f16e4d1c506960870a517ab13798a332ded62a9.tar.bz2
scala-7f16e4d1c506960870a517ab13798a332ded62a9.zip
SI-7859 fix AnyVal.scala scaladoc.
Value class member need not be public in 2.11+
Diffstat (limited to 'src')
-rw-r--r--src/library/scala/AnyVal.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/AnyVal.scala b/src/library/scala/AnyVal.scala
index 9def6cb054..ff62948413 100644
--- a/src/library/scala/AnyVal.scala
+++ b/src/library/scala/AnyVal.scala
@@ -33,7 +33,7 @@ package scala
*
* User-defined value classes which avoid object allocation...
*
- * - must have a single, public `val` parameter that is the underlying runtime representation.
+ * - must have a single `val` parameter that is the underlying runtime representation.
* - can define `def`s, but no `val`s, `var`s, or nested `traits`s, `class`es or `object`s.
* - typically extend no other trait apart from `AnyVal`.
* - cannot be used in type tests or pattern matching.