Skip to content

Commit

Permalink
Fix merge issue
Browse files Browse the repository at this point in the history
  • Loading branch information
vinc committed Jan 17, 2024
1 parent dc09de6 commit 8136e3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/usr/lisp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ pub fn main(args: &[&str]) -> Result<(), ExitCode> {
return help();
}
let path = args[1];
if let Ok(mut input) = api::fs::read_to_string(path) {
if let Ok(mut input) = fs::read_to_string(path) {
loop {
match parse_eval(&input, env) {
Ok((rest, _)) => {
Expand Down

0 comments on commit 8136e3e

Please sign in to comment.