Skip to content
Merged

Typos #1732

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* Compiler: Emit index source_map to avoid changing mappings (#1714, #1715)
* Compiler: improved source map generation (#1716)
* Runtime: change Sys.os_type on windows (Cygwin -> Win32)
* Runtime: backtraces are really expensive, they need to be be explicitly
* Runtime: backtraces are really expensive, they need to be explicitly
requested at compile time (--enable with-js-error) or at startup (OCAMLRUNPARAM=b=1)
* Runtime: allow dynlink of precompiled js with separate compilation (#1676)
* Runtime: reimplement the runtime of weak and ephemeron (#1707)
Expand Down
4 changes: 2 additions & 2 deletions compiler/bin-js_of_ocaml/cmd_arg.ml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ let options =
in
let no_sourcemap =
let doc =
"Don't generate source map. All other source map related flags will be be ignored."
"Don't generate source map. All other source map related flags will be ignored."
in
Arg.(value & flag & info [ "no-sourcemap"; "no-source-map" ] ~doc)
in
Expand Down Expand Up @@ -395,7 +395,7 @@ let options_runtime_only =
in
let no_sourcemap =
let doc =
"Don't generate source map. All other source map related flags will be be ignored."
"Don't generate source map. All other source map related flags will be ignored."
in
Arg.(value & flag & info [ "no-sourcemap"; "no-source-map" ] ~doc)
in
Expand Down
2 changes: 1 addition & 1 deletion compiler/bin-js_of_ocaml/link.ml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ let options =
in
let no_sourcemap =
let doc =
"Don't generate source map. All other source map related flags will be be ignored."
"Don't generate source map. All other source map related flags will be ignored."
in
Arg.(value & flag & info [ "no-sourcemap"; "no-source-map" ] ~doc)
in
Expand Down
2 changes: 1 addition & 1 deletion lib/js_of_ocaml/sys_js.mli
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ val read_file : name:string -> string
val create_file : name:string -> content:string -> unit
(** Register a file to a Pseudo Filesystem.
[create_file ~name ~content] register the file [name] with content [content]
so it can be be opened with [open_in name] *)
so it can be opened with [open_in name] *)

val update_file : name:string -> content:string -> unit
(** Update a file in the Pseudo Filesystem.
Expand Down
Loading