Skip to content

Commit 6abc68f

Browse files
authored
Merge pull request scala/scala#10861 from hamzaremmal/scala3-backport
2 parents 7589e80 + 6082118 commit 6abc68f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/scala/collection/mutable/Builder.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ trait Builder[-A, +To] extends Growable[A] { self =>
9191
}
9292
}
9393

94-
/** A builder resulting from this builder my mapping the result using `f`. */
94+
/** A builder resulting from this builder by mapping the result using `f`. */
9595
def mapResult[NewTo](f: To => NewTo): Builder[A, NewTo] = new Builder[A, NewTo] {
9696
def addOne(x: A): this.type = { self += x; this }
9797
def clear(): Unit = self.clear()

0 commit comments

Comments
 (0)