Skip to content

Commit 7222b21

Browse files
committed
Added missing language attribute.
1 parent 8b7fcde commit 7222b21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

_sips/sips/2017-11-20-byname-implicits.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ trait Semigroup[A] {
141141

142142
If we have instances for basic types,
143143

144-
```
144+
```scala
145145
object Semigroup {
146146
implicit val intSemigroup: Semigroup[Int] =
147147
new Semigroup[Int] {
@@ -163,7 +163,7 @@ object Semigroup {
163163
then we can manually write instances for, for example, tuples of types which have `Semigroup`
164164
instances,
165165

166-
```
166+
```scala
167167
implicit def tuple2Semigroup[A, B]
168168
(implicit
169169
sa: Semigroup[A],

0 commit comments

Comments
 (0)