@@ -66,8 +66,8 @@ public void exampleToMap() {
6666 .toMap (person -> person .name )
6767 .subscribe (new PrintSubscriber ("toMap" ));
6868
69- // toMap: {Saul=Person@7cd84586, Nick=Person@30dae81, Will=Person@1b2c6ec2}
70- // toMap: Completed
69+ // toMap: {Saul=Person@7cd84586, Nick=Person@30dae81, Will=Person@1b2c6ec2}
70+ // toMap: Completed
7171 }
7272
7373 public void exampleToMapWithSelector () {
@@ -83,8 +83,8 @@ public void exampleToMapWithSelector() {
8383 person -> person .age )
8484 .subscribe (new PrintSubscriber ("toMap" ));
8585
86- // toMap: {Saul=35, Nick=40, Will=25}
87- // toMap: Completed
86+ // toMap: {Saul=35, Nick=40, Will=25}
87+ // toMap: Completed
8888 }
8989
9090 public void exampleToMapWithCustomContainer () {
@@ -101,8 +101,8 @@ public void exampleToMapWithCustomContainer() {
101101 () -> new HashMap <String , Integer >())
102102 .subscribe (new PrintSubscriber ("toMap" ));
103103
104- // toMap: {Saul=35, Nick=40, Will=25}
105- // toMap: Completed
104+ // toMap: {Saul=35, Nick=40, Will=25}
105+ // toMap: Completed
106106 }
107107
108108 public void exampleToMultimap () {
@@ -118,8 +118,8 @@ public void exampleToMultimap() {
118118 person -> person .name )
119119 .subscribe (new PrintSubscriber ("toMap" ));
120120
121- // toMap: {35=[Will, Saul], 40=[Nick]}
122- // toMap: Completed
121+ // toMap: {35=[Will, Saul], 40=[Nick]}
122+ // toMap: Completed
123123 }
124124
125125 public void exampleToMultimapWithCustomContainers () {
@@ -137,8 +137,8 @@ public void exampleToMultimapWithCustomContainers() {
137137 (key ) -> new ArrayList <>())
138138 .subscribe (new PrintSubscriber ("toMap" ));
139139
140- // toMap: {35=[Will, Saul], 40=[Nick]}
141- // toMap: Completed
140+ // toMap: {35=[Will, Saul], 40=[Nick]}
141+ // toMap: Completed
142142 }
143143
144144
0 commit comments