Skip to content

Commit

Permalink
chore: syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
caelansar committed Jun 30, 2024
1 parent 4d09f14 commit 7d9b0ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eval/env.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,6 @@ fn env_should_work() {
assert_eq!(Some(Object::Int(2)), env1.get("1"));
// the value in outer env should be updated
assert_eq!(Some(Object::Int(2)), outer.borrow_mut().get("1"));
// should not set set value for self hashmap
// should not set value for self hashmap
assert_eq!(None, env1.store.get("1"))
}

0 comments on commit 7d9b0ba

Please sign in to comment.