mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 17:21:02 +00:00
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)
This commit is contained in:
parent
0836b9e13f
commit
22ba252c8f
@ -101,7 +101,7 @@ func SliceDiff(slice1, slice2 []interface{}) (diffslice []interface{}) {
|
||||
return
|
||||
}
|
||||
|
||||
// SliceIntersect returns diff slice of slice2 - slice1.
|
||||
// SliceIntersect returns diff slice of slice1 - slice2.
|
||||
func SliceIntersect(slice1, slice2 []interface{}) (diffslice []interface{}) {
|
||||
for _, v := range slice1 {
|
||||
if !InSliceIface(v, slice2) {
|
||||
|
Loading…
Reference in New Issue
Block a user