File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments