mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 05:15:00 +00:00
Magical semi-colon
This commit is contained in:
parent
6501c46bd6
commit
9699ceac2f
1 changed files with 1 additions and 1 deletions
|
@ -498,7 +498,7 @@ impl Fs for RealFs {
|
|||
async fn save(&self, path: &Path, text: &Rope, line_ending: LineEnding) -> Result<()> {
|
||||
let buffer_size = text.summary().len.min(10 * 1024);
|
||||
if let Some(path) = path.parent() {
|
||||
self.create_dir(path).await?
|
||||
self.create_dir(path).await?;
|
||||
}
|
||||
let file = smol::fs::File::create(path).await?;
|
||||
let mut writer = smol::io::BufWriter::with_capacity(buffer_size, file);
|
||||
|
|
Loading…
Reference in a new issue