Skip to content

Commit dd55dfa

Browse files
fix typos in the documentation
1 parent b7b980c commit dd55dfa

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

doc/source/general.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ For typical interactive use, it should therefore
1414
generally be safe to ``import *``:
1515

1616
>>> from flint import *
17-
>>> fmpz(3) / 2
17+
>>> fmpq(3) / 2
1818
3/2
1919

2020
For non-interactive use, it is still good manners to use explicit
2121
imports or preserve the ``flint`` namespace prefix::
2222

2323
>>> import flint
24-
>>> flint.fmpz(3)
24+
>>> flint.fmpq(3) / 2
2525
3/2
2626

2727
Global context

0 commit comments

Comments
 (0)