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 @@ -223,13 +223,13 @@ type Schema struct {
223223 //
224224 // AtLeastOneOf is a set of schema keys that, when set, at least one of
225225 // the keys in that list must be specified.
226- //
227- // AllOf is a set of schema keys that must be set simultaneously. This
226+ //
227+ // AllOf is a set of schema keys that must be set simultaneously. This
228228 // setting conflicts with ExactlyOneOf or AtLeastOneOf
229229 ConflictsWith []string
230230 ExactlyOneOf []string
231231 AtLeastOneOf []string
232- AllOf []string
232+ AllOf []string
233233
234234 // When Deprecated is set, this attribute is deprecated.
235235 //
@@ -1521,7 +1521,7 @@ func validateAllOfAttribute(
15211521 if len (schema .AllOf ) == 0 {
15221522 return nil
15231523 }
1524-
1524+
15251525 allKeys := removeDuplicates (append (schema .AllOf , k ))
15261526 sort .Strings (allKeys )
15271527
You can’t perform that action at this time.
0 commit comments