Skip to content

Commit a25a0c9

Browse files
committed
Updates policy files from SBT [ci skip]
1 parent ca7f9db commit a25a0c9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Let's run it and wait for the fetch to complete:
106106

107107
```scala
108108
fetchOne.runA[Id]
109-
// [2347] One ToString 1
109+
// [2384] One ToString 1
110110
// res3: cats.Id[String] = 1
111111
```
112112

@@ -124,7 +124,7 @@ When executing the above fetch, note how the three identities get batched and th
124124

125125
```scala
126126
fetchThree.runA[Id]
127-
// [2347] Many ToString NonEmptyList(3, 1, 2)
127+
// [2384] Many ToString NonEmptyList(3, 1, 2)
128128
// res5: cats.Id[(String, String, String)] = (1,2,3)
129129
```
130130

@@ -165,8 +165,8 @@ Note how the two independent data fetches run in parallel, minimizing the latenc
165165

166166
```scala
167167
fetchMulti.runA[Id]
168-
// [2348] One Length one
169-
// [2347] One ToString 1
168+
// [2385] One Length one
169+
// [2384] One ToString 1
170170
// res7: cats.Id[(String, Int)] = (1,3)
171171
```
172172

@@ -185,7 +185,7 @@ While running it, notice that the data source is only queried once. The next tim
185185

186186
```scala
187187
fetchTwice.runA[Id]
188-
// [2347] One ToString 1
188+
// [2384] One ToString 1
189189
// res8: cats.Id[(String, String)] = (1,1)
190190
```
191191
## Fetch in the wild

0 commit comments

Comments
 (0)