Skip to content

Commit

Permalink
fix mdlint
Browse files Browse the repository at this point in the history
  • Loading branch information
DawnMagnet committed Jun 27, 2024
1 parent 9efb76e commit 9087e6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions course14/lec14_en.md
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ let program = Program::{
```moonbit
enum StackValue {
Val(Value) // Ordinary value
Func(@immutable_hashmap.Map[String, Value]) // Function stack, stores previous local variables
Func(@immut/hashmap.Map[String, Value]) // Function stack, stores previous local variables
}
enum AdministrativeInstruction {
Expand All @@ -346,7 +346,7 @@ enum AdministrativeInstruction {
struct State {
program : Program
stack : @immut/list.List[StackValue]
locals : @immutable_hashmap.Map[String, Value]
locals : @immut/hashmap.Map[String, Value]
instructions : @immut/list.List[AdministrativeInstruction]
}
```
Expand Down

0 comments on commit 9087e6c

Please sign in to comment.