summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/GenTraversableOnce.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2013-07-10 13:07:58 -0700
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-07-10 13:07:58 -0700
commit3aba63bc6a3801c4cda1cca427fd544f4ea28742 (patch)
tree6e476d4282804103267bebaf8a8266fd9456d808 /src/library/scala/collection/GenTraversableOnce.scala
parent9def2ada8261ca14f0059c7d2b01e85830705e9b (diff)
parent0870f913e8eb98108fe8a7f50ade9b4ff6563595 (diff)
downloadscala-3aba63bc6a3801c4cda1cca427fd544f4ea28742.tar.gz
scala-3aba63bc6a3801c4cda1cca427fd544f4ea28742.tar.bz2
scala-3aba63bc6a3801c4cda1cca427fd544f4ea28742.zip
Merge pull request #2709 from yllan/fix-docs
Fix docs inconsistent (cmp -> ord).
Diffstat (limited to 'src/library/scala/collection/GenTraversableOnce.scala')
-rw-r--r--src/library/scala/collection/GenTraversableOnce.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/collection/GenTraversableOnce.scala b/src/library/scala/collection/GenTraversableOnce.scala
index 3d1b2c4278..e4976d8f2c 100644
--- a/src/library/scala/collection/GenTraversableOnce.scala
+++ b/src/library/scala/collection/GenTraversableOnce.scala
@@ -341,7 +341,7 @@ trait GenTraversableOnce[+A] extends Any {
*
* @param ord An ordering to be used for comparing elements.
* @tparam A1 The type over which the ordering is defined.
- * @return the smallest element of this $coll with respect to the ordering `cmp`.
+ * @return the smallest element of this $coll with respect to the ordering `ord`.
*
* @usecase def min: A
* @inheritdoc
@@ -354,7 +354,7 @@ trait GenTraversableOnce[+A] extends Any {
*
* @param ord An ordering to be used for comparing elements.
* @tparam A1 The type over which the ordering is defined.
- * @return the largest element of this $coll with respect to the ordering `cmp`.
+ * @return the largest element of this $coll with respect to the ordering `ord`.
*
* @usecase def max: A
* @inheritdoc