From 943bf3c00a0ab7868d5e9e74beb78cc697c92619 Mon Sep 17 00:00:00 2001 From: Svend Sorensen Date: Thu, 4 Jun 2015 13:03:01 -0700 Subject: [PATCH] Use name of function in comment string Name of function is Difference, not Differences. --- helper/schema/set.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper/schema/set.go b/helper/schema/set.go index 7176b86308..8d21866df2 100644 --- a/helper/schema/set.go +++ b/helper/schema/set.go @@ -74,7 +74,7 @@ func (s *Set) List() []interface{} { return result } -// Differences performs a set difference of the two sets, returning +// Difference performs a set difference of the two sets, returning // a new third set that has only the elements unique to this set. func (s *Set) Difference(other *Set) *Set { result := &Set{F: s.F}