Skip to content

Commit 76bd849

Browse files
committed
format
1 parent 751eb03 commit 76bd849

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

jscomp/ml/dicts.ml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
let has_dict_pattern_attribute attrs =
22
attrs
33
|> List.find_opt (fun (({txt}, _) : Parsetree.attribute) ->
4-
txt = "res.dictPattern")
4+
txt = "res.dictPattern")
55
|> Option.is_some
66

77
let has_dict_attribute attrs =
8-
attrs
9-
|> List.find_opt (fun (({txt}, _) : Parsetree.attribute) ->
10-
txt = "res.dict")
11-
|> Option.is_some
8+
attrs
9+
|> List.find_opt (fun (({txt}, _) : Parsetree.attribute) -> txt = "res.dict")
10+
|> Option.is_some

0 commit comments

Comments
 (0)