diff options
Diffstat (limited to 'tvix/store/protos/castore.proto')
-rw-r--r-- | tvix/store/protos/castore.proto | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tvix/store/protos/castore.proto b/tvix/store/protos/castore.proto index e73160bf9dd1..3d380c63da98 100644 --- a/tvix/store/protos/castore.proto +++ b/tvix/store/protos/castore.proto @@ -9,8 +9,9 @@ package tvix.store.v1; // Each of these nodes have a name attribute, which is the basename in that directory // and node type specific attributes. // The name attribute: -// - may not contain slashes or null bytes -// - needs to be unique across all three lists +// - MUST not contain slashes or null bytes +// - MUST not be '.' or '..' +// - MUST be unique across all three lists // Elements in each list need to be lexicographically ordered by the name // attribute. message Directory { |