summaryrefslogtreecommitdiff
path: root/src/library/scala/collection
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2017-02-16 14:06:12 -0800
committerSeth Tisue <seth@tisue.net>2017-02-16 14:06:12 -0800
commite04e2818359c2504124e4d1ef776994a08734060 (patch)
tree9d88332692ebd604962b5b79d21d50d894671fca /src/library/scala/collection
parent4ae37504ca1df877780afac437795afb402cae6c (diff)
parent8367bf68c16d1693796ea4e0584e811cbde60a7f (diff)
downloadscala-e04e2818359c2504124e4d1ef776994a08734060.tar.gz
scala-e04e2818359c2504124e4d1ef776994a08734060.tar.bz2
scala-e04e2818359c2504124e4d1ef776994a08734060.zip
Merge commit '8367bf68c1' into merge-2.11.x-to-2.12.x-20170214
Diffstat (limited to 'src/library/scala/collection')
-rw-r--r--src/library/scala/collection/immutable/Queue.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/immutable/Queue.scala b/src/library/scala/collection/immutable/Queue.scala
index 240b5c899e..5081b39bdc 100644
--- a/src/library/scala/collection/immutable/Queue.scala
+++ b/src/library/scala/collection/immutable/Queue.scala
@@ -125,7 +125,7 @@ sealed class Queue[+A] protected(protected val in: List[A], protected val out: L
/** Returns a new queue with all elements provided by an `Iterable` object
* added at the end of the queue.
*
- * The elements are prepended in the order they are given out by the
+ * The elements are appended in the order they are given out by the
* iterator.
*
* @param iter an iterable object