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 01b1d81 commit 13bbf3aCopy full SHA for 13bbf3a
crates/cli/src/remember.rs
@@ -46,7 +46,7 @@ pub(crate) fn load_remembered_command(cryo_dir: PathBuf) -> Result<RememberedCom
46
let mut file = File::open(path)
47
.map_err(|_| ParseError::ParseError("either 1) specify datasets to collect or 2) specify a command to remember with --remember".to_string()))?;
48
file.read_to_string(&mut contents)
49
- .map_err(|_| ParseError::ParseError("could not read rememebered file".to_string()))?;
+ .map_err(|_| ParseError::ParseError("could not read remembered file".to_string()))?;
50
let remembered: RememberedCommand = serde_json::from_str(&contents)
51
.map_err(|_| ParseError::ParseError("could not deserialize remembered file".to_string()))?;
52
Ok(remembered)
0 commit comments