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()); })