File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -295,7 +295,7 @@ where
295295{
296296 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
297297 f. debug_list ( )
298- . entries ( self . set1 . difference ( & self . set2 ) )
298+ . entries ( self . set1 . difference ( self . set2 ) )
299299 . finish ( )
300300 }
301301}
@@ -346,7 +346,7 @@ where
346346{
347347 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
348348 f. debug_list ( )
349- . entries ( self . set1 . intersection ( & self . set2 ) )
349+ . entries ( self . set1 . intersection ( self . set2 ) )
350350 . finish ( )
351351 }
352352}
@@ -397,7 +397,7 @@ where
397397{
398398 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
399399 f. debug_list ( )
400- . entries ( self . set1 . symmetric_difference ( & self . set2 ) )
400+ . entries ( self . set1 . symmetric_difference ( self . set2 ) )
401401 . finish ( )
402402 }
403403}
@@ -447,7 +447,7 @@ where
447447 S2 : BuildHasher ,
448448{
449449 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
450- f. debug_list ( ) . entries ( self . set1 . union ( & self . set2 ) ) . finish ( )
450+ f. debug_list ( ) . entries ( self . set1 . union ( self . set2 ) ) . finish ( )
451451 }
452452}
453453
You can’t perform that action at this time.
0 commit comments