Skip to content

Commit 2af745f

Browse files
committed
Bug fixed.
1 parent 930f124 commit 2af745f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

YukimiScript.Parser/TypeChecker.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ let parametersTypeFromBlock (par: Parameter list) (b: Block) =
6969
|> Result.bind (fun x ->
7070
let paramTypePairs =
7171
List.map (readOnlyDict >> fun x ->
72-
match x["param"], x["type"] with
72+
match x.["param"], x.["type"] with
7373
| Symbol par, Symbol t -> par, t
7474
| _ -> failwith "parametersTypeFromBlock: failed!") x
7575

0 commit comments

Comments
 (0)