Skip to content

Commit

Permalink
small language fix
Browse files Browse the repository at this point in the history
replace `my` with `by`
  • Loading branch information
truecrunchyfrog authored Sep 12, 2024
1 parent e9d4831 commit 787fd8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ trait Builder[-A, +To] extends Growable[A] {
}
}

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

0 comments on commit 787fd8e

Please sign in to comment.