Skip to content

Commit ee1c739

Browse files
authored
Update signal.rst
1 parent 4e3833a commit ee1c739

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Doc/library/signal.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ The variables defined in the :mod:`signal` module are:
276276
All the signal numbers are defined symbolically. For example, the hangup signal
277277
is defined as :const:`signal.SIGHUP`; the variable names are identical to the
278278
names used in C programs, as found in ``<signal.h>``. The Unix man page for
279-
':c:func:`!signal`' lists the existing signals (on some systems this is
279+
':c:func:``signal``' lists the existing signals (on some systems this is
280280
:manpage:`signal(2)`, on others the list is in :manpage:`signal(7)`). Note that
281281
not all systems define the same set of signal names; only those names defined by
282282
the system are defined by this module.
@@ -672,9 +672,8 @@ The :mod:`signal` module defines the following functions:
672672
*sigset*.
673673

674674
The return value is an object representing the data contained in the
675-
:c:type:`siginfo_t` structure, namely: :attr:`!si_signo`, :attr:`!si_code`,
676-
:attr:`!si_errno`, :attr:`!si_pid`, :attr:`!si_uid`, :attr:`!si_status`,
677-
:attr:`!si_band`.
675+
``siginfo_t`` structure, namely: ``si_signo``, ``si_code``,
676+
``si_errno``, ``si_pid``, ``si_uid``, ``si_status``, ``si_band``.
678677

679678
.. availability:: Unix.
680679

0 commit comments

Comments
 (0)