File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 19
19
* Compiler: Emit index source_map to avoid changing mappings (#1714 , #1715 )
20
20
* Compiler: improved source map generation (#1716 )
21
21
* Runtime: change Sys.os_type on windows (Cygwin -> Win32)
22
- * Runtime: backtraces are really expensive, they need to be be explicitly
22
+ * Runtime: backtraces are really expensive, they need to be explicitly
23
23
requested at compile time (--enable with-js-error) or at startup (OCAMLRUNPARAM=b=1)
24
24
* Runtime: allow dynlink of precompiled js with separate compilation (#1676 )
25
25
* Runtime: reimplement the runtime of weak and ephemeron (#1707 )
Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ let options =
130
130
in
131
131
let no_sourcemap =
132
132
let doc =
133
- " Don't generate source map. All other source map related flags will be be ignored."
133
+ " Don't generate source map. All other source map related flags will be ignored."
134
134
in
135
135
Arg. (value & flag & info [ " no-sourcemap" ; " no-source-map" ] ~doc )
136
136
in
@@ -395,7 +395,7 @@ let options_runtime_only =
395
395
in
396
396
let no_sourcemap =
397
397
let doc =
398
- " Don't generate source map. All other source map related flags will be be ignored."
398
+ " Don't generate source map. All other source map related flags will be ignored."
399
399
in
400
400
Arg. (value & flag & info [ " no-sourcemap" ; " no-source-map" ] ~doc )
401
401
in
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ let options =
39
39
in
40
40
let no_sourcemap =
41
41
let doc =
42
- " Don't generate source map. All other source map related flags will be be ignored."
42
+ " Don't generate source map. All other source map related flags will be ignored."
43
43
in
44
44
Arg. (value & flag & info [ " no-sourcemap" ; " no-source-map" ] ~doc )
45
45
in
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ val read_file : name:string -> string
54
54
val create_file : name :string -> content :string -> unit
55
55
(* * Register a file to a Pseudo Filesystem.
56
56
[create_file ~name ~content] register the file [name] with content [content]
57
- so it can be be opened with [open_in name] *)
57
+ so it can be opened with [open_in name] *)
58
58
59
59
val update_file : name :string -> content :string -> unit
60
60
(* * Update a file in the Pseudo Filesystem.
You can’t perform that action at this time.
0 commit comments