8000 Merge pull request #10861 from hamzaremmal/scala3-backport · scala/scala@b6f70d2 · GitHub
[go: up one dir, main page]

Skip to content

Commit b6f70d2

Browse files
authored
Merge pull request #10861 from hamzaremmal/scala3-backport
2 parents 31538fb + 2aa5d8d commit b6f70d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/library/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)
0