We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a413e1b commit 2350d55Copy full SHA for 2350d55
esy.json
@@ -32,7 +32,6 @@
32
"install": [
33
["esy-installer", "reason.install"],
34
["esy-installer", "rtop.install"]
35
- ],
36
- "buildsInSource": "_build"
+ ]
37
}
38
src/reason-parser/reason_comment.ml
@@ -38,7 +38,7 @@ let wrap t =
match t.text with
39
| "" | "*" -> "/***/"
40
| txt when Reason_syntax_util.isLineComment txt ->
41
- (* single line comments of the form `// comment` have a `\n` at the end*)
+ (* single line comments of the form `// comment` have a `\n` at the end *)
42
"//" ^ (String.sub txt 0 (String.length txt - 1))
43
| txt when txt.[0] = '*' && txt.[1] <> '*' -> "/**" ^ txt ^ "*/"
44
| txt -> "/*" ^ txt ^ "*/"
0 commit comments