Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion Doc/c-api/structures.rst
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ Defining Getters and Setters

.. c:member:: getter PyGetSetDef.get

C funtion to get the attribute.
C function to get the attribute.

.. c:member:: setter PyGetSetDef.set

Expand Down
2 changes: 1 addition & 1 deletion Doc/library/ctypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ regular, non-variadic, function arguments:

libc.printf.argtypes = [ctypes.c_char_p]

Because specifying the attribute does inhibit portability it is adviced to always
Because specifying the attribute does inhibit portability it is advised to always
specify ``argtypes`` for all variadic functions.


Expand Down
2 changes: 1 addition & 1 deletion Doc/library/sqlite3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2463,7 +2463,7 @@ Transaction control via the ``autocommit`` attribute

The recommended way of controlling transaction behaviour is through
the :attr:`Connection.autocommit` attribute,
which should preferrably be set using the *autocommit* parameter
which should preferably be set using the *autocommit* parameter
of :func:`connect`.

It is suggested to set *autocommit* to ``False``,
Expand Down