Skip to content

Commit 71a509c

Browse files
authored
Misc: Typos (#1732)
1 parent 55fca34 commit 71a509c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
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)

compiler/bin-js_of_ocaml/cmd_arg.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

compiler/bin-js_of_ocaml/link.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

lib/js_of_ocaml/sys_js.mli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ val read_file : name:string -> string
5454
val 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

5959
val update_file : name:string -> content:string -> unit
6060
(** Update a file in the Pseudo Filesystem.

0 commit comments

Comments
 (0)