From bd7df868be38ef6ebb9457d67138c10215ea9638 Mon Sep 17 00:00:00 2001 From: Giacomo Pope <44242839+GiacomoPope@users.noreply.github.com> Date: Thu, 4 Sep 2025 10:07:16 +0100 Subject: [PATCH] Correct typos in documentation Issue #268 mentioned some typos in the fmpq_mpoly code, so i thought i would try and find them and fix them. I didnt find many --- src/flint/types/fmpq_mpoly.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flint/types/fmpq_mpoly.pyx b/src/flint/types/fmpq_mpoly.pyx index f5151941..2ca544fa 100644 --- a/src/flint/types/fmpq_mpoly.pyx +++ b/src/flint/types/fmpq_mpoly.pyx @@ -93,7 +93,7 @@ cdef class fmpq_mpoly_ctx(flint_mpoly_context): :param names: A tuple containing the names of the variables of the ring. :param ordering: The term order for the ring. - Do not construct one of these directly, use ``fmpz_mpoly_ctx.get``. + Do not construct one of these directly, use ``fmpq_mpoly_ctx.get``. """ _ctx_cache = _fmpq_mpoly_ctx_cache @@ -210,7 +210,7 @@ cdef class fmpq_mpoly_ctx(flint_mpoly_context): cdef class fmpq_mpoly(flint_mpoly): """ The *fmpq_mpoly* type represents sparse multivariate polynomials over - the integers. + the rationals. """ def __cinit__(self):