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 1919* Compiler: Emit index source_map to avoid changing mappings (#1714 , #1715 )
2020* Compiler: improved source map generation (#1716 )
2121* 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
2323 requested at compile time (--enable with-js-error) or at startup (OCAMLRUNPARAM=b=1)
2424* Runtime: allow dynlink of precompiled js with separate compilation (#1676 )
2525* 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 =
130130 in
131131 let no_sourcemap =
132132 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."
134134 in
135135 Arg. (value & flag & info [ " no-sourcemap" ; " no-source-map" ] ~doc )
136136 in
@@ -395,7 +395,7 @@ let options_runtime_only =
395395 in
396396 let no_sourcemap =
397397 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."
399399 in
400400 Arg. (value & flag & info [ " no-sourcemap" ; " no-source-map" ] ~doc )
401401 in
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ let options =
3939 in
4040 let no_sourcemap =
4141 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."
4343 in
4444 Arg. (value & flag & info [ " no-sourcemap" ; " no-source-map" ] ~doc )
4545 in
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ val read_file : name:string -> string
5454val create_file : name :string -> content :string -> unit
5555(* * Register a file to a Pseudo Filesystem.
5656 [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] *)
5858
5959val update_file : name :string -> content :string -> unit
6060(* * Update a file in the Pseudo Filesystem.
You can’t perform that action at this time.
0 commit comments