Skip to content

Commit 9efb76e

Browse files
committed
fix mdlint
1 parent d4a10e4 commit 9efb76e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

course14/lec14_en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ let program = Program::{
335335
```moonbit
336336
enum StackValue {
337337
Val(Value) // Ordinary value
338-
Func(@map.Map[String, Value]) // Function stack, stores previous local variables
338+
Func(@immutable_hashmap.Map[String, Value]) // Function stack, stores previous local variables
339339
}
340340
341341
enum AdministrativeInstruction {
@@ -346,7 +346,7 @@ enum AdministrativeInstruction {
346346
struct State {
347347
program : Program
348348
stack : @immut/list.List[StackValue]
349-
locals : @map.Map[String, Value]
349+
locals : @immutable_hashmap.Map[String, Value]
350350
instructions : @immut/list.List[AdministrativeInstruction]
351351
}
352352
```

0 commit comments

Comments
 (0)