diff --git a/doc/source/fmpq_poly.rst b/doc/source/fmpq_poly.rst index fb3ac81847..69787311a5 100644 --- a/doc/source/fmpq_poly.rst +++ b/doc/source/fmpq_poly.rst @@ -586,11 +586,9 @@ Scalar multiplication and division Supports aliasing of ``(rpoly, den)`` and ``(poly, den)``. The ``fmpz_t``'s `r` and `s` may not be part of ``(rpoly, rden)``. -.. function:: void fmpq_poly_scalar_mul_si(fmpq_poly_t rop, const fmpq_poly_t op, slong c) - - Sets ``rop`` to `c` times ``op``. - -.. function:: void fmpq_poly_scalar_mul_ui(fmpq_poly_t rop, const fmpq_poly_t op, ulong c) +.. function:: void fmpq_poly_scalar_mul_fmpq(fmpq_poly_t rop, const fmpq_poly_t op, const fmpq_t c) + void fmpq_poly_scalar_mul_si(fmpq_poly_t rop, const fmpq_poly_t op, slong c) + void fmpq_poly_scalar_mul_ui(fmpq_poly_t rop, const fmpq_poly_t op, ulong c) Sets ``rop`` to `c` times ``op``.