Skip to content

Commit 4fc1ec7

Browse files
committed
spelling: the method implementation a bit
Signed-off-by: Josh Soref <[email protected]>
1 parent 7b44710 commit 4fc1ec7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_posts/2021-02-26-tuples-bring-generic-programming-to-scala-3.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,8 @@ type Concat[L <: Tup, R <: Tup] <: Tup = L match
302302
You can see that the implementation closely follows the one above for the
303303
method. The syntax can be read in the following way: the `Concat` type is a
304304
subtype of `Tup` and is obtained by combining types `L` and `R` which are both
305-
subtypes of `Tup`. To use it we need to massage a bit the method
306-
implementation and to change its return type:
305+
subtypes of `Tup`. To use it we need to massage the method implementation a
306+
bit and to change its return type:
307307

308308
```scala
309309
def concat[L <: Tup, R <: Tup](left: L, right: R): Concat[L, R] =

0 commit comments

Comments
 (0)