Skip to content

Commit 1fe36e0

Browse files
committed
do not mention Js module
1 parent 3e2f715 commit 1fe36e0

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

jscomp/runtime/pervasives.res

+22-22
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ module Pervasives = {
7474
external \"/": (int, int) => int = "%divint"
7575
external mod: (int, int) => int = "%modint"
7676

77-
@deprecated("Use Core or Js instead. This will be removed in v13")
77+
@deprecated("Use Core instead. This will be removed in v13")
7878
let abs = x =>
7979
if x >= 0 {
8080
x
@@ -92,10 +92,10 @@ module Pervasives = {
9292
external lsr: (int, int) => int = "%lsrint"
9393
external asr: (int, int) => int = "%asrint"
9494

95-
@deprecated("Use Core or Js instead. This will be removed in v13")
95+
@deprecated("Use Core instead. This will be removed in v13")
9696
let max_int = lsr(-1, 1)
9797

98-
@deprecated("Use Core or Js instead. This will be removed in v13")
98+
@deprecated("Use Core instead. This will be removed in v13")
9999
let min_int =
100100
max_int + 1
101101

@@ -108,61 +108,61 @@ module Pervasives = {
108108
external \"*.": (float, float) => float = "%mulfloat"
109109
external \"/.": (float, float) => float = "%divfloat"
110110

111-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
111+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
112112
external \"**": (float, float) => float = "pow"
113113

114-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
114+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
115115
external exp: float => float = "exp"
116116

117-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
117+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
118118
external acos: float => float = "acos"
119119

120-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
120+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
121121
external asin: float => float = "asin"
122122

123-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
123+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
124124
external atan: float => float = "atan"
125125

126-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
126+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
127127
external atan2: (float, float) => float = "atan2"
128128

129-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
129+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
130130
external cos: float => float = "cos"
131131

132-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
132+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
133133
external cosh: float => float = "cosh"
134134

135-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
135+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
136136
external log: float => float = "log"
137137

138-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
138+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
139139
external log10: float => float = "log10"
140140

141-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
141+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
142142
external log1p: float => float = "log1p"
143143

144-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
144+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
145145
external sin: float => float = "sin"
146146

147-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
147+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
148148
external sinh: float => float = "sinh"
149149

150-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
150+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
151151
external sqrt: float => float = "sqrt"
152152

153-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
153+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
154154
external tan: float => float = "tan"
155155

156-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
156+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
157157
external tanh: float => float = "tanh"
158158

159-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
159+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
160160
external ceil: float => float = "ceil"
161161

162-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
162+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
163163
external floor: float => float = "floor"
164164

165-
@deprecated("Use Core or Js instead. This will be removed in v13") @val @scope("Math")
165+
@deprecated("Use Core instead. This will be removed in v13") @val @scope("Math")
166166
external abs_float: float => float = "abs"
167167

168168
@deprecated("Use Core instead. This will be removed in v13")

0 commit comments

Comments
 (0)