Skip to content

Commit 46c60e0

Browse files
authored
Docs: Fix markups for emphasis (GH-135598)
The word emphasis character `_` is not supported as sphinx markup, so changed to `*`.
1 parent 4dea6b4 commit 46c60e0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Doc/c-api/refcounting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ of Python objects.
210210
211211
Py_SETREF(dst, src);
212212
213-
That arranges to set *dst* to *src* _before_ releasing the reference
213+
That arranges to set *dst* to *src* *before* releasing the reference
214214
to the old value of *dst*, so that any code triggered as a side-effect
215215
of *dst* getting torn down no longer believes *dst* points
216216
to a valid object.

Doc/library/logging.config.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ configuration dictionary for the handler named ``foo``, and later (once that
586586
handler has been configured) it points to the configured handler instance.
587587
Thus, ``cfg://handlers.foo`` could resolve to either a dictionary or a handler
588588
instance. In general, it is wise to name handlers in a way such that dependent
589-
handlers are configured _after_ any handlers they depend on; that allows
589+
handlers are configured *after* any handlers they depend on; that allows
590590
something like ``cfg://handlers.foo`` to be used in configuring a handler that
591591
depends on handler ``foo``. If that dependent handler were named ``bar``,
592592
problems would result, because the configuration of ``bar`` would be attempted

0 commit comments

Comments
 (0)