Skip to content

Commit b5b8b89

Browse files
committed
Fix error in demo/config.rs
1 parent bd1a0ec commit b5b8b89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

demo/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ pub fn load(context: &dyn Context) -> ThagResult<Option<Config>> {
310310
if config_path.exists() {
311311
let config_str = fs::read_to_string(config_path).map_err(|e| e.to_string())?;
312312
debug_log!("config_str={config_str:?}");
313-
let config: Config = toml::from_str(&config_str).map_err(|e| e.to_string())å;
313+
let config: Config = toml::from_str(&config_str).map_err(|e| e.to_string())?;
314314
debug_log!("config={config:?}");
315315
Ok(Some(config))
316316
} else {

0 commit comments

Comments
 (0)