diff options
Diffstat (limited to 'crates/vcs/src/data/sheet.rs')
| -rw-r--r-- | crates/vcs/src/data/sheet.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/vcs/src/data/sheet.rs b/crates/vcs/src/data/sheet.rs index 17a0981..edf307a 100644 --- a/crates/vcs/src/data/sheet.rs +++ b/crates/vcs/src/data/sheet.rs @@ -102,7 +102,7 @@ impl<'a> Sheet<'a> { /// Because I don't want a second instance of the sheet to be kept in memory. /// If needed, please deserialize and reload it. pub async fn persist(self) -> Result<(), std::io::Error> { - SheetData::write_to(&self.data, &self.sheet_path()).await + SheetData::write_to(&self.data, self.sheet_path()).await } /// Get the path to the sheet file |
