Skip to content

Commit ad502a9

Browse files
committed
Change reference of "ports" to "boards"
1 parent 842d807 commit ad502a9

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

shared-bindings/math/__init__.c

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ MATH_FUN_1(exp, exp)
193193
//| def expm1(x: float) -> float:
194194
//| """Return ``exp(x) - 1``.
195195
//|
196-
//| May not be available in some ports.
196+
//| May not be available on some boards.
197197
//| """
198198
//| ...
199199
//|
@@ -202,7 +202,7 @@ MATH_FUN_1(expm1, expm1)
202202
//| def log2(x: float) -> float:
203203
//| """Return the base-2 logarithm of ``x``.
204204
//|
205-
//| May not be available in some ports.
205+
//| May not be available on some boards.
206206
//| """
207207
//| ...
208208
//|
@@ -211,7 +211,7 @@ MATH_FUN_1_ERRCOND(log2, log2, (x <= (mp_float_t)0.0))
211211
//| def log10(x: float) -> float:
212212
//| """Return the base-10 logarithm of ``x``.
213213
//|
214-
//| May not be available in some ports.
214+
//| May not be available on some boards.
215215
//| """
216216
//| ...
217217
//|
@@ -220,7 +220,7 @@ MATH_FUN_1_ERRCOND(log10, log10, (x <= (mp_float_t)0.0))
220220
//| def cosh(x: float) -> float:
221221
//| """Return the hyperbolic cosine of ``x``.
222222
//|
223-
//| May not be available in some ports.
223+
//| May not be available on some boards.
224224
//| """
225225
//| ...
226226
//|
@@ -229,7 +229,7 @@ MATH_FUN_1(cosh, cosh)
229229
//| def sinh(x: float) -> float:
230230
//| """Return the hyperbolic sine of ``x``.
231231
//|
232-
//| May not be available in some ports.
232+
//| May not be available on some boards.
233233
//| """
234234
//| ...
235235
//|
@@ -238,7 +238,7 @@ MATH_FUN_1(sinh, sinh)
238238
//| def tanh(x: float) -> float:
239239
//| """Return the hyperbolic tangent of ``x``.
240240
//|
241-
//| May not be available in some ports.
241+
//| May not be available on some boards.
242242
//| """
243243
//| ...
244244
//|
@@ -247,7 +247,7 @@ MATH_FUN_1(tanh, tanh)
247247
//| def acosh(x: float) -> float:
248248
//| """Return the inverse hyperbolic cosine of ``x``.
249249
//|
250-
//| May not be available in some ports.
250+
//| May not be available on some boards.
251251
//| """
252252
//| ...
253253
//|
@@ -256,7 +256,7 @@ MATH_FUN_1(acosh, acosh)
256256
//| def asinh(x: float) -> float:
257257
//| """Return the inverse hyperbolic sine of ``x``.
258258
//|
259-
//| May not be available in some ports.
259+
//| May not be available on some boards.
260260
//| """
261261
//| ...
262262
//|
@@ -265,7 +265,7 @@ MATH_FUN_1(asinh, asinh)
265265
//| def atanh(x: float) -> float:
266266
//| """Return the inverse hyperbolic tangent of ``x``.
267267
//|
268-
//| May not be available in some ports.
268+
//| May not be available on some boards.
269269
//| """
270270
//| ...
271271
//|
@@ -310,7 +310,7 @@ MATH_FUN_2(ldexp, ldexp)
310310
//| def erf(x: float) -> float:
311311
//| """Return the error function of ``x``.
312312
//|
313-
//| May not be available in some ports.
313+
//| May not be available on some boards.
314314
//| """
315315
//| ...
316316
//|
@@ -319,7 +319,7 @@ MATH_FUN_1(erf, erf)
319319
//| def erfc(x: float) -> float:
320320
//| """Return the complementary error function of ``x``.
321321
//|
322-
//| May not be available in some ports.
322+
//| May not be available on some boards.
323323
//| """
324324
//| ...
325325
//|
@@ -328,7 +328,7 @@ MATH_FUN_1(erfc, erfc)
328328
//| def gamma(x: float) -> float:
329329
//| """Return the gamma function of ``x``.
330330
//|
331-
//| May not be available in some ports.
331+
//| May not be available on some boards.
332332
//| """
333333
//| ...
334334
//|
@@ -337,7 +337,7 @@ MATH_FUN_1(gamma, tgamma)
337337
//| def lgamma(x: float) -> float:
338338
//| """Return the natural logarithm of the gamma function of ``x``.
339339
//|
340-
//| May not be available in some ports.
340+
//| May not be available on some boards.
341341
//| """
342342
//| ...
343343
//|

0 commit comments

Comments
 (0)