Skip to content

Commit f85bf58

Browse files
committed
Fix some comments formatting
1 parent 6a5b953 commit f85bf58

File tree

6 files changed

+30
-30
lines changed

6 files changed

+30
-30
lines changed

jscomp/others/belt_HashSetInt.resi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
2424

2525
/***
26-
This module is [`Belt.HashSet`]() specialized with key type to be a primitive type.
26+
This module is [`Belt.HashSet`]() specialized with key type to be a primitive type.
2727
28-
It is more efficient in general, the API is the same with [`Belt.HashSet`]() except its key type is fixed,
29-
and identity is not needed(using the built-in one)
28+
It is more efficient in general, the API is the same with [`Belt.HashSet`]() except its key type is fixed,
29+
and identity is not needed(using the built-in one)
3030
31-
**See** [`Belt.HashSet`]()
31+
**See** [`Belt.HashSet`]()
3232
*/
3333

3434
type key = int

jscomp/others/belt_HashSetString.resi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
2424

2525
/***
26-
This module is [`Belt.HashSet`]() specialized with key type to be a primitive type.
26+
This module is [`Belt.HashSet`]() specialized with key type to be a primitive type.
2727
28-
It is more efficient in general, the API is the same with [`Belt.HashSet`]() except its key type is fixed,
29-
and identity is not needed(using the built-in one)
28+
It is more efficient in general, the API is the same with [`Belt.HashSet`]() except its key type is fixed,
29+
and identity is not needed(using the built-in one)
3030
31-
**See** [`Belt.HashSet`]()
31+
**See** [`Belt.HashSet`]()
3232
*/
3333

3434
type key = string

jscomp/others/belt_SetInt.resi

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
2424

2525
/***
26-
This module is [`Belt.Set`]() specialized with value type to be a primitive type.
27-
It is more efficient in general, the API is the same with [`Belt_Set`]() except its value type is fixed,
28-
and identity is not needed(using the built-in one)
26+
This module is [`Belt.Set`]() specialized with value type to be a primitive type.
27+
It is more efficient in general, the API is the same with [`Belt_Set`]() except its value type is fixed,
28+
and identity is not needed(using the built-in one)
2929
30-
**See** [`Belt.Set`]()
30+
**See** [`Belt.Set`]()
3131
*/
3232

3333
/** The type of the set elements. */
@@ -77,7 +77,7 @@ of sets.
7777
*/
7878
let cmp: (t, t) => int
7979

80-
/**
80+
/**
8181
`eq(s1, s2)` tests whether the sets `s1` and `s2` are equal, that is, contain
8282
equal elements.
8383
*/
@@ -105,7 +105,7 @@ let every: (t, value => bool) => bool
105105

106106
let someU: (t, (. value) => bool) => bool
107107

108-
/**
108+
/**
109109
`some(p, s)` checks if at least one element of the set satisfies the predicate
110110
`p`. Oder unspecified.
111111
*/

jscomp/others/belt_SetString.resi

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
2424

2525
/***
26-
This module is [`Belt.Set`]() specialized with value type to be a primitive type.
27-
It is more efficient in general, the API is the same with [`Belt_Set`]() except its value type is fixed,
28-
and identity is not needed(using the built-in one)
26+
This module is [`Belt.Set`]() specialized with value type to be a primitive type.
27+
It is more efficient in general, the API is the same with [`Belt_Set`]() except its value type is fixed,
28+
and identity is not needed(using the built-in one)
2929
30-
**See** [`Belt.Set`]()
30+
**See** [`Belt.Set`]()
3131
*/
3232

3333
/** The type of the set elements. */
@@ -77,7 +77,7 @@ of sets.
7777
*/
7878
let cmp: (t, t) => int
7979

80-
/**
80+
/**
8181
`eq(s1, s2)` tests whether the sets `s1` and `s2` are equal, that is, contain
8282
equal elements.
8383
*/
@@ -105,7 +105,7 @@ let every: (t, value => bool) => bool
105105

106106
let someU: (t, (. value) => bool) => bool
107107

108-
/**
108+
/**
109109
`some(p, s)` checks if at least one element of the set satisfies the predicate
110110
`p`. Oder unspecified.
111111
*/

jscomp/others_cppo/belt_Set.cppo.resi

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
2424

2525
/***
26-
This module is [`Belt.Set`]() specialized with value type to be a primitive type.
27-
It is more efficient in general, the API is the same with [`Belt_Set`]() except its value type is fixed,
28-
and identity is not needed(using the built-in one)
26+
This module is [`Belt.Set`]() specialized with value type to be a primitive type.
27+
It is more efficient in general, the API is the same with [`Belt_Set`]() except its value type is fixed,
28+
and identity is not needed(using the built-in one)
2929
30-
**See** [`Belt.Set`]()
30+
**See** [`Belt.Set`]()
3131
*/
3232

3333
#ifdef TYPE_STRING
@@ -84,7 +84,7 @@ of sets.
8484
*/
8585
let cmp: (t, t) => int
8686

87-
/**
87+
/**
8888
`eq(s1, s2)` tests whether the sets `s1` and `s2` are equal, that is, contain
8989
equal elements.
9090
*/
@@ -112,7 +112,7 @@ let every: (t, value => bool) => bool
112112

113113
let someU: (t, (. value) => bool) => bool
114114

115-
/**
115+
/**
116116
`some(p, s)` checks if at least one element of the set satisfies the predicate
117117
`p`. Oder unspecified.
118118
*/

jscomp/others_cppo/hashset.cppo.resi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
2424

2525
/***
26-
This module is [`Belt.HashSet`]() specialized with key type to be a primitive type.
26+
This module is [`Belt.HashSet`]() specialized with key type to be a primitive type.
2727
28-
It is more efficient in general, the API is the same with [`Belt.HashSet`]() except its key type is fixed,
29-
and identity is not needed(using the built-in one)
28+
It is more efficient in general, the API is the same with [`Belt.HashSet`]() except its key type is fixed,
29+
and identity is not needed(using the built-in one)
3030
31-
**See** [`Belt.HashSet`]()
31+
**See** [`Belt.HashSet`]()
3232
*/
3333

3434
#ifdef TYPE_STRING

0 commit comments

Comments
 (0)