Skip to content

Commit 1ce096d

Browse files
author
Yannick Heiber
committed
Named args in docs
1 parent 088afa7 commit 1ce096d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class Csv2CborHttpEndpoint[F[_]](implicit F: Async[F]) extends Http4sDsl[F] {
138138
}
139139

140140
private def toCbor(row: Row): CborValue =
141-
CborValue.Array(row.values.toList.map(CborValue.TextString(_)), false)
141+
CborValue.Array(row.values.toList.map(CborValue.TextString(_)), indefinite = false)
142142
}
143143
```
144144

@@ -207,4 +207,4 @@ curl -s -X "POST" "http://localhost:8080/prettyJson" \
207207
},
208208
"d": 1
209209
}
210-
```
210+
```

0 commit comments

Comments
 (0)