Skip to content

Commit

Permalink
Merge pull request #10296 from JD557/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue committed Mar 13, 2023
2 parents 00c3755 + c7a16c9 commit ed80170
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/library/scala/collection/mutable/ArrayDeque.scala
Expand Up @@ -21,7 +21,7 @@ import scala.reflect.ClassTag

/** An implementation of a double-ended queue that internally uses a resizable circular buffer.
*
* Append, prepend, removeFirst, removeLast and random-access (indexed-lookup and indexed-replacement)
* Append, prepend, removeHead, removeLast and random-access (indexed-lookup and indexed-replacement)
* take amortized constant time. In general, removals and insertions at i-th index are O(min(i, n-i))
* and thus insertions and removals from end/beginning are fast.
*
Expand Down

0 comments on commit ed80170

Please sign in to comment.