Skip to content

Commit 22e28e1

Browse files
author
JoelCodes
committed
Formatted text
1 parent a3ac8f8 commit 22e28e1

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
@@ -26,13 +26,13 @@ You are free to look at any of the tests for guidance, but don't change them.
2626

2727
These exercises are all about learning the mechanisms that we can use to create, transform, and combine promises.
2828

29-
`npm run making-promises` - Create promises with Promise.resolve, Promise.reject, and the Promise constructor.
30-
`npm run consuming-promises` - Use `.then(cb)` and `.catch(cb)` to respond to a promise completing and do something with the result.
31-
`npm run transforming-promises` - Use `.then(cb)` and `.catch(cb)` to transform the results of async processes.
32-
`npm run chaining-promises` - Use `.then(cb)` and `.catch(cb)` to chain async processes.
29+
* `npm run making-promises` - Create promises with Promise.resolve, Promise.reject, and the Promise constructor.
30+
* `npm run consuming-promises` - Use `.then(cb)` and `.catch(cb)` to respond to a promise completing and do something with the result.
31+
* `npm run transforming-promises` - Use `.then(cb)` and `.catch(cb)` to transform the results of async processes.
32+
* `npm run chaining-promises` - Use `.then(cb)` and `.catch(cb)` to chain async processes.
3333

3434
### Promise Puzzles
3535

3636
Now it's time to use the tricks from above to solve some problems.
3737

38-
`npm run callbacks` - Turn callback-centric functions into promise-centric functions.
38+
* `npm run callbacks` - Turn callback-centric functions into promise-centric functions.

0 commit comments

Comments
 (0)