@@ -313,7 +313,7 @@ function gmp_sqrtrem(GMP|string|int $num): array {}
313
313
* </p>
314
314
* <p>It can be either a GMP number resource, or a
315
315
* numeric string given that it is possible to convert the latter to a number.</p>
316
- * @param int $exponent <p>
316
+ * @param positive- int $exponent <p>
317
317
* The positive power to raise the <i>base</i>.
318
318
* </p>
319
319
* @return resource|GMP The new (raised) number, as a GMP number. The case of
@@ -693,7 +693,7 @@ function gmp_export(GMP|string|int $num, int $word_size = 1, int $flags = GMP_MS
693
693
* @link https://php.net/manual/en/function.gmp-root.php
694
694
* @param GMP|string|int $num <p>Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6
695
695
* and later, or a numeric string provided that it is possible to convert the latter to a number.</p>
696
- * @param int $nth The positive root to take of a.
696
+ * @param positive- int $nth The positive root to take of a <b>num</b> .
697
697
* @return GMP The integer component of the resultant root, as a GMP number.
698
698
* @since 5.6
699
699
*/
@@ -705,7 +705,7 @@ function gmp_root(GMP|string|int $num, int $nth): GMP {}
705
705
* @link https://php.net/manual/en/function.gmp-rootrem.php
706
706
* @param GMP|string|int $num <p>Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6
707
707
* and later, or a numeric string provided that it is possible to convert the latter to a number.</p>
708
- * @param int $nth The positive root to take of a.
708
+ * @param positive- int $nth The positive root to take of a <b>num</b> .
709
709
* @return array|GMP[] <p>A two element array, where the first element is the integer component of
710
710
* the root, and the second element is the remainder, both represented as GMP numbers.</p>
711
711
* @since 5.6
0 commit comments