On a quest for agency in Bellairs

Remove spaces

Changed files
+2 -3
mvp
+2 -3
mvp/bellairs.schema
···
interface Directory {
# Represents a directory in the filesystem
-
list @0 () -> (entries :List(Entry));
# Lists all entries in the directory
···
interface File {
# Represents a file in the filesystem
-
size @0 () -> (size :UInt64);
# Returns the size of the file in bytes
···
# Reads data from the file, optionally starting at offset and reading up to len bytes
# Default is to read the entire file
}
-
···
interface Directory {
# Represents a directory in the filesystem
+
list @0 () -> (entries :List(Entry));
# Lists all entries in the directory
···
interface File {
# Represents a file in the filesystem
+
size @0 () -> (size :UInt64);
# Returns the size of the file in bytes
···
# Reads data from the file, optionally starting at offset and reading up to len bytes
# Default is to read the entire file
}