From ce6b9f4eb8df360d27eea03b29090babca74789c Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Sun, 12 Jul 2026 12:39:31 +0800 Subject: [PATCH] fix: correct Falied->Failed typo in results deserialization error message --- tools/periscope/periscope-rs/src/bench/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/periscope/periscope-rs/src/bench/mod.rs b/tools/periscope/periscope-rs/src/bench/mod.rs index b00373778..f0cf3b997 100644 --- a/tools/periscope/periscope-rs/src/bench/mod.rs +++ b/tools/periscope/periscope-rs/src/bench/mod.rs @@ -276,7 +276,7 @@ fn load_or_create_results( let results = File::open(&results_path) .context("Failed reading file.") - .and_then(|f| serde_json::from_reader(&f).context("Falied deserializing results file.")) + .and_then(|f| serde_json::from_reader(&f).context("Failed deserializing results file.")) .inspect_err(|err| { eprintln!( "Deserialization of '{}' failed: {}",