Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This is a series of interactive exercises for learning Microsoft's Reactive Exte

1. map
2. filter
3. mergeAll
3. concatAll
4. reduce
5. zip

Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2296,7 +2296,7 @@ <h4>Exercise 20: Retrieve the id, title, and <i>smallest</i> box art url for eve
];


// Use one or more concatMap, map, and reduce calls to create an array with the following items (order doesn't matter)
// Use one or more concatMap, map, and reduce calls to create an array with the following items (order matters)
// [
// {"id": 675465,"title": "Fracture","boxart":"http://cdn-0.nflximg.com/images/2891/Fracture120.jpg" },
// {"id": 65432445,"title": "The Chamber","boxart":"http://cdn-0.nflximg.com/images/2891/TheChamber130.jpg" },
Expand Down Expand Up @@ -2402,7 +2402,7 @@ <h4>Exercise 20: Retrieve the id, title, and <i>smallest</i> box art url for eve
];


// Use one or more concatMap, map, and reduce calls to create an array with the following items (order doesn't matter)
// Use one or more concatMap, map, and reduce calls to create an array with the following items (order matters)
// [
// {"id": 675465,"title": "Fracture","boxart":"http://cdn-0.nflximg.com/images/2891/Fracture120.jpg" },
// {"id": 65432445,"title": "The Chamber","boxart":"http://cdn-0.nflximg.com/images/2891/TheChamber130.jpg" },
Expand Down