Skip to content

Commit 2350d55

Browse files
committed
fix esy build
1 parent a413e1b commit 2350d55

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

esy.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@
3232
"install": [
3333
["esy-installer", "reason.install"],
3434
["esy-installer", "rtop.install"]
35-
],
36-
"buildsInSource": "_build"
35+
]
3736
}
3837
}

src/reason-parser/reason_comment.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ let wrap t =
3838
match t.text with
3939
| "" | "*" -> "/***/"
4040
| txt when Reason_syntax_util.isLineComment txt ->
41-
(* single line comments of the form `// comment` have a `\n` at the end*)
41+
(* single line comments of the form `// comment` have a `\n` at the end *)
4242
"//" ^ (String.sub txt 0 (String.length txt - 1))
4343
| txt when txt.[0] = '*' && txt.[1] <> '*' -> "/**" ^ txt ^ "*/"
4444
| txt -> "/*" ^ txt ^ "*/"

0 commit comments

Comments
 (0)