From 3bb858bc34b4cdd92ca0a5eb658e34fdedda87c1 Mon Sep 17 00:00:00 2001 From: sam boyer Date: Mon, 22 May 2017 12:47:11 -0400 Subject: [PATCH] Fix dumb typo in comment --- constraints.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constraints.go b/constraints.go index 628a44a..164c011 100644 --- a/constraints.go +++ b/constraints.go @@ -117,7 +117,7 @@ func NewConstraint(in string) (Constraint, error) { return newConstraint(in, false, constraintCache) } -// NewConstraintIC (ImpliedConstraint) is the same as NewConstraint, except that +// NewConstraintIC ("Implied Caret") is the same as NewConstraint, except that // it treats an absent operator as being equivalent to ^ instead of =. func NewConstraintIC(in string) (Constraint, error) { return newConstraint(in, true, constraintCacheIC)