Skip to content

Commit 5d9f674

Browse files
Thomas Meckelappilon
authored andcommitted
Corrected formatting of helper/schema/schema.go
1 parent e5d0fa2 commit 5d9f674

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

helper/schema/schema.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -192,13 +192,13 @@ type Schema struct {
192192
//
193193
// AtLeastOneOf is a set of schema keys that, when set, at least one of
194194
// the keys in that list must be specified.
195-
//
196-
// AllOf is a set of schema keys that must be set simultaneously. This
195+
//
196+
// AllOf is a set of schema keys that must be set simultaneously. This
197197
// setting conflicts with ExactlyOneOf or AtLeastOneOf
198198
ConflictsWith []string
199199
ExactlyOneOf []string
200200
AtLeastOneOf []string
201-
AllOf []string
201+
AllOf []string
202202

203203
// When Deprecated is set, this attribute is deprecated.
204204
//
@@ -1466,7 +1466,7 @@ func validateAllOfAttribute(
14661466
if len(schema.AllOf) == 0 {
14671467
return nil
14681468
}
1469-
1469+
14701470
allKeys := removeDuplicates(append(schema.AllOf, k))
14711471
sort.Strings(allKeys)
14721472

0 commit comments

Comments
 (0)