Skip to content
This repository was archived by the owner on Apr 24, 2021. It is now read-only.

Commit 6efa1b2

Browse files
committed
format
1 parent d25c043 commit 6efa1b2

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/PartialParser.ml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,12 @@ let findJsxContext text offset =
110110
loop offset
111111

112112
type completable =
113-
| Cdecorator of string (** e.g. @module *)
114-
| Clabel of string list * string (** e.g. (["M", "foo"], "label") for M.foo(...~label...) *)
115-
| Cpath of string list (** e.g. ["M", "foo"] for M.foo *)
116-
| Cjsx of string list * string (** E.g. (["M", "Comp"], "id") for <M.Comp ... id *)
113+
| Cdecorator of string (** e.g. @module *)
114+
| Clabel of string list * string
115+
(** e.g. (["M", "foo"], "label") for M.foo(...~label...) *)
116+
| Cpath of string list (** e.g. ["M", "foo"] for M.foo *)
117+
| Cjsx of string list * string
118+
(** E.g. (["M", "Comp"], "id") for <M.Comp ... id *)
117119
| Cpipe of string (** E.g. "x->foo" *)
118120

119121
let isLowercaseIdent id =

0 commit comments

Comments
 (0)