Skip to content

Commit c2b1089

Browse files
committed
Update docs
1 parent ea62e79 commit c2b1089

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

src/flint/types/fmpq_mpoly.pyx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,8 @@ cdef class fmpq_mpoly_ctx(flint_mpoly_context):
8989
"""
9090
A class for storing the polynomial context
9191
92-
:param nvars: The number of variables in the ring
93-
:param ordering: The term order for the ring
9492
:param names: A tuple containing the names of the variables of the ring.
93+
:param ordering: The term order for the ring.
9594
9695
Do not construct one of these directly, use ``fmpz_mpoly_ctx.get``.
9796
"""

src/flint/types/fmpz_mod_mpoly.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ cdef class fmpz_mod_mpoly_ctx(flint_mod_mpoly_context):
8080
"""
8181
A class for storing the polynomial context
8282
83-
:param nvars: The number of variables in the ring
84-
:param ordering: The term order for the ring
8583
:param names: A tuple containing the names of the variables of the ring.
84+
:param ordering: The term order for the ring.
85+
:param modulus: The modulus for the ring.
8686
8787
Do not construct one of these directly, use ``fmpz_mod_mpoly_ctx.get``.
8888
"""

src/flint/types/fmpz_mpoly.pyx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,8 @@ cdef class fmpz_mpoly_ctx(flint_mpoly_context):
9393
"""
9494
A class for storing the polynomial context
9595
96-
:param nvars: The number of variables in the ring
97-
:param ordering: The term order for the ring
9896
:param names: A tuple containing the names of the variables of the ring.
97+
:param ordering: The term order for the ring.
9998
10099
Do not construct one of these directly, use ``fmpz_mpoly_ctx.get``.
101100
"""

src/flint/types/nmod_mpoly.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ cdef class nmod_mpoly_ctx(flint_mod_mpoly_context):
8585
"""
8686
A class for storing the polynomial context
8787
88-
:param nvars: The number of variables in the ring
89-
:param ordering: The term order for the ring
9088
:param names: A tuple containing the names of the variables of the ring.
89+
:param ordering: The term order for the ring.
90+
:param modulus: The modulus for the ring.
9191
9292
Do not construct one of these directly, use ``nmod_mpoly_ctx.get``.
9393
"""

0 commit comments

Comments
 (0)