@@ -193,7 +193,7 @@ MATH_FUN_1(exp, exp)
193
193
//| def expm1(x: float) -> float:
194
194
//| """Return ``exp(x) - 1``.
195
195
//|
196
- //| May not be available in some ports .
196
+ //| May not be available on some boards .
197
197
//| """
198
198
//| ...
199
199
//|
@@ -202,7 +202,7 @@ MATH_FUN_1(expm1, expm1)
202
202
//| def log2(x: float) -> float:
203
203
//| """Return the base-2 logarithm of ``x``.
204
204
//|
205
- //| May not be available in some ports .
205
+ //| May not be available on some boards .
206
206
//| """
207
207
//| ...
208
208
//|
@@ -211,7 +211,7 @@ MATH_FUN_1_ERRCOND(log2, log2, (x <= (mp_float_t)0.0))
211
211
//| def log10(x: float) -> float:
212
212
//| """Return the base-10 logarithm of ``x``.
213
213
//|
214
- //| May not be available in some ports .
214
+ //| May not be available on some boards .
215
215
//| """
216
216
//| ...
217
217
//|
@@ -220,7 +220,7 @@ MATH_FUN_1_ERRCOND(log10, log10, (x <= (mp_float_t)0.0))
220
220
//| def cosh(x: float) -> float:
221
221
//| """Return the hyperbolic cosine of ``x``.
222
222
//|
223
- //| May not be available in some ports .
223
+ //| May not be available on some boards .
224
224
//| """
225
225
//| ...
226
226
//|
@@ -229,7 +229,7 @@ MATH_FUN_1(cosh, cosh)
229
229
//| def sinh(x: float) -> float:
230
230
//| """Return the hyperbolic sine of ``x``.
231
231
//|
232
- //| May not be available in some ports .
232
+ //| May not be available on some boards .
233
233
//| """
234
234
//| ...
235
235
//|
@@ -238,7 +238,7 @@ MATH_FUN_1(sinh, sinh)
238
238
//| def tanh(x: float) -> float:
239
239
//| """Return the hyperbolic tangent of ``x``.
240
240
//|
241
- //| May not be available in some ports .
241
+ //| May not be available on some boards .
242
242
//| """
243
243
//| ...
244
244
//|
@@ -247,7 +247,7 @@ MATH_FUN_1(tanh, tanh)
247
247
//| def acosh(x: float) -> float:
248
248
//| """Return the inverse hyperbolic cosine of ``x``.
249
249
//|
250
- //| May not be available in some ports .
250
+ //| May not be available on some boards .
251
251
//| """
252
252
//| ...
253
253
//|
@@ -256,7 +256,7 @@ MATH_FUN_1(acosh, acosh)
256
256
//| def asinh(x: float) -> float:
257
257
//| """Return the inverse hyperbolic sine of ``x``.
258
258
//|
259
- //| May not be available in some ports .
259
+ //| May not be available on some boards .
260
260
//| """
261
261
//| ...
262
262
//|
@@ -265,7 +265,7 @@ MATH_FUN_1(asinh, asinh)
265
265
//| def atanh(x: float) -> float:
266
266
//| """Return the inverse hyperbolic tangent of ``x``.
267
267
//|
268
- //| May not be available in some ports .
268
+ //| May not be available on some boards .
269
269
//| """
270
270
//| ...
271
271
//|
@@ -310,7 +310,7 @@ MATH_FUN_2(ldexp, ldexp)
310
310
//| def erf(x: float) -> float:
311
311
//| """Return the error function of ``x``.
312
312
//|
313
- //| May not be available in some ports .
313
+ //| May not be available on some boards .
314
314
//| """
315
315
//| ...
316
316
//|
@@ -319,7 +319,7 @@ MATH_FUN_1(erf, erf)
319
319
//| def erfc(x: float) -> float:
320
320
//| """Return the complementary error function of ``x``.
321
321
//|
322
- //| May not be available in some ports .
322
+ //| May not be available on some boards .
323
323
//| """
324
324
//| ...
325
325
//|
@@ -328,7 +328,7 @@ MATH_FUN_1(erfc, erfc)
328
328
//| def gamma(x: float) -> float:
329
329
//| """Return the gamma function of ``x``.
330
330
//|
331
- //| May not be available in some ports .
331
+ //| May not be available on some boards .
332
332
//| """
333
333
//| ...
334
334
//|
@@ -337,7 +337,7 @@ MATH_FUN_1(gamma, tgamma)
337
337
//| def lgamma(x: float) -> float:
338
338
//| """Return the natural logarithm of the gamma function of ``x``.
339
339
//|
340
- //| May not be available in some ports .
340
+ //| May not be available on some boards .
341
341
//| """
342
342
//| ...
343
343
//|
0 commit comments