From d730e660cf7ba1954f43b83f45f76cbb73641870 Mon Sep 17 00:00:00 2001 From: Steve Lacy Date: Thu, 10 Jan 2019 12:32:47 -0700 Subject: [PATCH] Return false from Valid() --- internal/collection/string.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/collection/string.go b/internal/collection/string.go index 9332d9b2..b7207957 100644 --- a/internal/collection/string.go +++ b/internal/collection/string.go @@ -29,7 +29,7 @@ func (s String) Empty() bool { // Valid ... func (s String) Valid() bool { - return s.Valid() + return false } // Rect ...