summaryrefslogtreecommitdiff
path: root/test/scaladoc/resources/doc-root/AnyRef.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2015-07-29 14:40:33 +1000
committerJason Zaugg <jzaugg@gmail.com>2015-07-29 14:40:33 +1000
commit8e7e3b4a5fa6acfc2b5061fa7c5f09594cc25f8c (patch)
tree5f175c1c961a207d2b5b597a2abf388f8ecafd93 /test/scaladoc/resources/doc-root/AnyRef.scala
parent7de4cbc5e5077a75c8c24d9cde9c78e54aa1ced2 (diff)
parent69c2c106fedd60f5c29a4aad696dec1de5e85200 (diff)
downloadscala-8e7e3b4a5fa6acfc2b5061fa7c5f09594cc25f8c.tar.gz
scala-8e7e3b4a5fa6acfc2b5061fa7c5f09594cc25f8c.tar.bz2
scala-8e7e3b4a5fa6acfc2b5061fa7c5f09594cc25f8c.zip
Merge pull request #4667 from janekdb/2.11.x-scaladoc-library-library-aux
ScalaDoc fixes for library and library-aux
Diffstat (limited to 'test/scaladoc/resources/doc-root/AnyRef.scala')
-rw-r--r--test/scaladoc/resources/doc-root/AnyRef.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/scaladoc/resources/doc-root/AnyRef.scala b/test/scaladoc/resources/doc-root/AnyRef.scala
index 362fbcf0f5..7cdc3d1ada 100644
--- a/test/scaladoc/resources/doc-root/AnyRef.scala
+++ b/test/scaladoc/resources/doc-root/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: AnyRef): Boolean =