diff --git a/Data/operators.csv b/Data/operators.csv
index 1236f6a..d64e7c8 100644
--- a/Data/operators.csv
+++ b/Data/operators.csv
@@ -9,7 +9,7 @@ catchErrorJustReturn,replaceError(with:),
 combineLatest,"combineLatest, tryCombineLatest",
 compactMap,"compactMap, tryCompactMap",
 concat,"append, prepend",
-concatMap,❌,
+concatMap,flatMap(maxPublishers: .max(1)), Set maxPublishers to 1 so that there is only one subscription at a time
 create,❌,Apple removed AnyPublisher with a closure in Xcode 11 beta 3 :-(
 debounce,debounce,
 debug,print,
diff --git a/README.md b/README.md
index 580bfab..f61e62e 100644
--- a/README.md
+++ b/README.md
@@ -57,7 +57,7 @@ It's based on the following blog post: [https://medium.com/gett-engineering/rxsw
 | combineLatest         | combineLatest, tryCombineLatest          |                                                                                                          |
 | compactMap            | compactMap, tryCompactMap                |                                                                                                          |
 | concat                | append, prepend                          |                                                                                                          |
-| concatMap             | ❌                                        |                                                                                                          |
+| concatMap             | flatMap(maxPublishers: .max(1))          |  Set maxPublishers to 1 so that there is only one subscription at a time                                 |
 | create                | ❌                                        | Apple removed AnyPublisher with a closure in Xcode 11 beta 3 :-(                                         |
 | debounce              | debounce                                 |                                                                                                          |
 | debug                 | print                                    |                                                                                                          |
diff --git a/Resources/basics.jpg b/Resources/basics.jpg
index 658ce16..de1dc10 100644
Binary files a/Resources/basics.jpg and b/Resources/basics.jpg differ
diff --git a/Resources/core_components.jpg b/Resources/core_components.jpg
index 6ebc625..c4101a9 100644
Binary files a/Resources/core_components.jpg and b/Resources/core_components.jpg differ
diff --git a/Resources/operators.jpg b/Resources/operators.jpg
index aec64cf..633e7e8 100644
Binary files a/Resources/operators.jpg and b/Resources/operators.jpg differ