Fix comment

This commit is contained in:
鈴木康文
2019-03-11 21:34:55 +09:00
committed by Jeremy Edwards
parent 8293d44ee0
commit 9c943d5a10

View File

@ -20,7 +20,7 @@ limitations under the License.
package set
// Intersection returns the interaction of two sets.
// Intersection returns the intersection of two sets.
func Intersection(a []string, b []string) (out []string) {
hash := make(map[string]bool)