We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00cde44 commit 1263558Copy full SHA for 1263558
src/storage.rs
@@ -67,7 +67,7 @@ pub fn save_ascii_frames(file_path: &Path, rle_frames: &[RleFrame]) -> Result<()
67
let checksum = Sha256::digest(&data_to_hash);
68
log::debug!("Computed checksum: {:x?}", checksum.as_slice());
69
70
- // don't know why i =need zstd for compressing, there has to be a more efficient way
+ // don't know why i need zstd for compressing, there has to be a more efficient way
71
let file = File::create(file_path).map_err(|e| AppError::Io {
72
source: e,
73
context: Some(file_path.display().to_string()),
0 commit comments