From c128dfd0508efba315052f147bf246dde2b60330 Mon Sep 17 00:00:00 2001
From: "this.me" <>
Date: Sun, 16 Jun 2019 02:00:42 -0700
Subject: [PATCH] edit README change to concatAll. mergeAll not used.
index.html clarify exercise20 instructions
---
README.md | 2 +-
index.html | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/README.md b/README.md
index 2cd31b8..14ef510 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/index.html b/index.html
index 20946df..b66dc8c 100644
--- a/index.html
+++ b/index.html
@@ -2296,7 +2296,7 @@
Exercise 20: Retrieve the id, title, and smallest 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" },
@@ -2402,7 +2402,7 @@ Exercise 20: Retrieve the id, title, and smallest 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" },