Skip to content

Commit 2b63cbc

Browse files
committed
tweak
1 parent 11cab11 commit 2b63cbc

File tree

3 files changed

+17
-12
lines changed

3 files changed

+17
-12
lines changed

jscomp/core/js_cmj_format.mli

+8-5
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,12 @@ val make:
7676
cmj_case:cmj_case ->
7777
t
7878

79-
type keyed_cmj_value =
80-
{ name : string ;
81-
arity : arity ;
82-
persistent_closed_lambda : Lam.t option}
79+
type keyed_cmj_value = {
80+
name : string ;
81+
arity : arity ;
82+
persistent_closed_lambda : Lam.t option
83+
}
84+
8385
val query_by_name :
8486
t ->
8587
string ->
@@ -107,7 +109,8 @@ val from_file_with_digest :
107109

108110
val from_string : string -> t
109111

110-
(* Note writing the file if its content is not chnaged
112+
(*
113+
Note writing the file if its content is not changed
111114
*)
112115
val to_file :
113116
string -> check_exists:bool -> t -> unit

jscomp/core/js_packages_info.mli

+6-6
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,18 @@ val runtime_package_path:
3838
string ->
3939
string
4040

41-
type package_info
42-
=
43-
{
44-
module_system : module_system ;
45-
path : string
46-
}
41+
type package_info = {
42+
module_system : module_system ;
43+
path : string
44+
}
4745

4846
type t
4947

5048
val is_runtime_package:
5149
t ->
5250
bool
51+
52+
5353

5454
val same_package_by_name :
5555
t ->

jscomp/ext/ext_namespace.mli

+3-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ type file_kind =
5151
| Upper_bs
5252
| Little_js
5353
| Little_bs
54-
(** [js_name_of_modulename ~little A-Ns]
54+
55+
56+
(** [js_name_of_modulename ~little A-Ns]
5557
*)
5658
val js_name_of_modulename :
5759
string ->

0 commit comments

Comments
 (0)