From 103ddba7bb56c3f0cdb620ce6737fdc1574d34b2 Mon Sep 17 00:00:00 2001 From: hoeggi Date: Mon, 20 Jun 2016 16:04:06 +0200 Subject: [PATCH] Update ConcatMap.md fixed a copy/past error --- Operators/ConcatMap.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Operators/ConcatMap.md b/Operators/ConcatMap.md index 05f6afa..e5037da 100644 --- a/Operators/ConcatMap.md +++ b/Operators/ConcatMap.md @@ -73,7 +73,7 @@ Region region = ...; Observable markers = mRealEstateService.getMarkers(region.getId()); markers - .flatMap((Marker marker) -> { + .concatMap((Marker marker) -> { Log.i(TAG, "Getting details: " + marker.getAddress()); return mRealEstateService.getMarkerDetails(marker.getId()); })