Ok, I figured it out... I had: ```fooSet: ~``` whi...
# hoplite
d
Ok, I figured it out... I had:
Copy code
fooSet: ~
which was a mistake, since yaml needs
fooSet: []
for an empty set, but the error message was that all the contents of
Foo
were missing... as if I had
Copy code
fooSet:
  -
maybe the error message should be improved?