Skip to content

Commit d9519db

Browse files
committed
Updates policy files from SBT [ci skip]
1 parent 3ad4d4d commit d9519db

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

AUTHORS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,6 @@ These are the people that have contributed to the Fetch project:
2121
* Peter Neyens <[peterneyens](https://github.com/peterneyens)>
2222
* Rafa Paradela <[rafaparadela](https://github.com/rafaparadela)>
2323
* Raúl Raja Martínez <[raulraja](https://github.com/raulraja)>
24+
* Suhas Gaddam <[suhasgaddam](https://github.com/suhasgaddam)>
2425
* The Gitter Badger <[gitter-badger](https://github.com/gitter-badger)>
2526
* William Ho <[williamho](https://github.com/williamho)>

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-
// [263] One ToString 1
109+
// [260] 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-
// [263] Many ToString NonEmptyList(3, 1, 2)
127+
// [260] 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-
// [263] One ToString 1
169-
// [264] One Length one
168+
// [260] One ToString 1
169+
// [261] One Length one
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-
// [263] One ToString 1
188+
// [260] One ToString 1
189189
// res8: cats.Id[(String, String)] = (1,1)
190190
```
191191
## Fetch in the wild

0 commit comments

Comments
 (0)