This commit is contained in:
Jarred Sumner
2021-05-12 01:46:58 -07:00
parent 8df97221a4
commit 2c20d88e8d
18 changed files with 1601 additions and 183 deletions

View File

@@ -88,7 +88,7 @@ pub const MutableString = struct {
return str;
}
pub fn len(self: *MutableString) usize {
pub fn len(self: *const MutableString) usize {
return self.list.items.len;
}