22ba252c by Stan Sun

fix the comment of SliceIntersect

The implementations of SliceDiff and SliceIntersect are the same.
However, the comments of them are opposite.
The former is (slice1 - slice2) while the latter is (slice2- slice1)
1 parent 0836b9e1
...@@ -101,7 +101,7 @@ func SliceDiff(slice1, slice2 []interface{}) (diffslice []interface{}) { ...@@ -101,7 +101,7 @@ func SliceDiff(slice1, slice2 []interface{}) (diffslice []interface{}) {
101 return 101 return
102 } 102 }
103 103
104 // SliceIntersect returns diff slice of slice2 - slice1. 104 // SliceIntersect returns diff slice of slice1 - slice2.
105 func SliceIntersect(slice1, slice2 []interface{}) (diffslice []interface{}) { 105 func SliceIntersect(slice1, slice2 []interface{}) (diffslice []interface{}) {
106 for _, v := range slice1 { 106 for _, v := range slice1 {
107 if !InSliceIface(v, slice2) { 107 if !InSliceIface(v, slice2) {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!