Skip to content

Commit add805f

Browse files
authored
Correct minor spelling typos (GH-26339)
surroundeded to surrounded extensins to extensions
1 parent 2a4cb00 commit add805f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Doc/using/configure.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ Effects of a debug build:
227227
* Install :ref:`debug hooks on memory allocators <default-memory-allocators>`
228228
to detect buffer overflow and other memory errors.
229229
* Define ``Py_DEBUG`` and ``Py_REF_DEBUG`` macros.
230-
* Add runtime checks: code surroundeded by ``#ifdef Py_DEBUG`` and ``#endif``.
230+
* Add runtime checks: code surrounded by ``#ifdef Py_DEBUG`` and ``#endif``.
231231
Enable ``assert(...)`` and ``_PyObject_ASSERT(...)`` assertions: don't set
232232
the ``NDEBUG`` macro (see also the :option:`--with-assertions` configure
233233
option). Main runtime checks:
@@ -550,7 +550,7 @@ Built-in modules have no ``__file__`` attribute::
550550
File "<stdin>", line 1, in <module>
551551
AttributeError: module 'sys' has no attribute '__file__'
552552

553-
Other C extensins are built as dynamic libraires, like the ``_asyncio`` module.
553+
Other C extensions are built as dynamic libraires, like the ``_asyncio`` module.
554554
They are built with the ``Py_BUILD_CORE_MODULE`` macro defined.
555555
Example on Linux x86-64::
556556

0 commit comments

Comments
 (0)