Skip to content

Commit 0bf539c

Browse files
authored
Merge pull request pazams#22 from itaditya/aditya-patch-#17
fixes pazams#17
2 parents 810fa91 + 16e917e commit 0bf539c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,15 +178,15 @@ For the following exmaples, let’s assume `fetchA()`, `fetchB()` and `fetchC()`
178178

179179
```Javascript
180180
function fetchSequential() {
181-
fetchA().then( (a) => {
181+
fetchA().then(a => {
182182
console.log(a);
183183
return fetchB();
184-
}.then( (b) => {
184+
}).then(b => {
185185
console.log(b);
186186
return fetchC();
187-
}.then( (c) => {
187+
}).then(c => {
188188
console.log(c);
189-
}
189+
})
190190
}
191191
```
192192

0 commit comments

Comments
 (0)