Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix manpage typos #508

Merged
merged 1 commit into from
Sep 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/gmpy2_context.c
Original file line number Diff line number Diff line change
Expand Up @@ -536,7 +536,7 @@ PyDoc_STRVAR(GMPy_doc_local_context,
"local_context(context, /, **kwargs) -> context\n\n"
"Return a new context for controlling gmpy2 arithmetic, based either\n"
"on the current context or on a ctx value. Context options additionally\n"
"can be overriden by keyword arguments.");
"can be overridden by keyword arguments.");

static PyObject *
GMPy_CTXT_Local(PyObject *self, PyObject *args, PyObject *kwargs)
Expand Down Expand Up @@ -591,7 +591,7 @@ PyDoc_STRVAR(GMPy_doc_context,
"context(ctx, /, **kwargs)\n\n"
"Return a new context for controlling gmpy2 arithmetic, based either\n"
"on the default context or on a given by ctx value. Context options\n"
"additionally can be overriden by keyword arguments.");
"additionally can be overridden by keyword arguments.");

static PyObject *
GMPy_CTXT_Context(PyTypeObject *type, PyObject *args, PyObject *kwargs)
Expand Down
Loading