chore(src/etcher.rs): ✏️ Fix typo in println

"succesfully" -> "successfully"
This commit is contained in:
Arien Shibani 2023-02-23 16:10:25 +01:00 committed by GitHub
parent 33c7d4d4ce
commit 36a108ffe2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -541,7 +541,7 @@ pub fn etch(path: &str, data: Data, settings: Settings) -> anyhow::Result<()> {
}
video.release()?;
println!("Video embedded succesfully at {}", path);
println!("Video embedded successfully at {}", path);
return Ok(());
}