summaryrefslogtreecommitdiff
path: root/src/library-aux
diff options
context:
space:
mode:
authorJanek Bogucki <janekdb@gmail.com>2015-07-28 19:13:44 +0100
committerJanek Bogucki <janekdb@gmail.com>2015-07-28 19:13:44 +0100
commit69c2c106fedd60f5c29a4aad696dec1de5e85200 (patch)
tree5e4e3cde1cc516136e48107a4a820211a492e417 /src/library-aux
parent7492bda816094cc089821cfb2915bd34c6b1ce96 (diff)
downloadscala-69c2c106fedd60f5c29a4aad696dec1de5e85200.tar.gz
scala-69c2c106fedd60f5c29a4aad696dec1de5e85200.tar.bz2
scala-69c2c106fedd60f5c29a4aad696dec1de5e85200.zip
ScalaDoc fixes for library and library-aux
Diffstat (limited to 'src/library-aux')
-rw-r--r--src/library-aux/scala/AnyRef.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library-aux/scala/AnyRef.scala b/src/library-aux/scala/AnyRef.scala
index 8c1862e729..7217499da7 100644
--- a/src/library-aux/scala/AnyRef.scala
+++ b/src/library-aux/scala/AnyRef.scala
@@ -45,7 +45,7 @@ trait AnyRef extends Any {
*/
def synchronized[T](body: => T): T
- /** Tests whether the argument (`arg0`) is a reference to the receiver object (`this`).
+ /** Tests whether the argument (`that`) is a reference to the receiver object (`this`).
*
* The `eq` method implements an [[http://en.wikipedia.org/wiki/Equivalence_relation equivalence relation]] on
* non-null instances of `AnyRef`, and has three additional properties:
@@ -73,7 +73,7 @@ trait AnyRef extends Any {
/** The expression `x == that` is equivalent to `if (x eq null) that eq null else x.equals(that)`.
*
- * @param arg0 the object to compare against this object for equality.
+ * @param that the object to compare against this object for equality.
* @return `true` if the receiver object is equivalent to the argument; `false` otherwise.
*/
final def ==(that: Any): Boolean =