Skip to content

Commit 66d81ea

Browse files
committed
fix bug
1 parent 67bf140 commit 66d81ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/KaSa_rep/main/KaSaIncremental.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ let parse_input s =
2121
Parsing_error
2222
("Invalid index: " ^ s
2323
^ ". Please put a label inside of quotation marks, e.g. 'label'.")
24-
| Some i -> Enable_index (true, i)
24+
| Some i -> Enable_index (bool, i)
2525
)
2626
in
2727
(* ---- ADD ---- *)
@@ -116,7 +116,7 @@ let main () =
116116
in
117117
Export_to_KaSa.enable_rule_index i state
118118
| Parsing_error s ->
119-
print_endline ("ERROR: Parsing error:" ^ s);
119+
print_endline ("ERROR: Parsing error: " ^ s);
120120
state
121121
in
122122
let error = Export_to_KaSa.get_errors state in

0 commit comments

Comments
 (0)