diff options
author | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-08-11 18:14:08 (GMT) |
---|---|---|
committer | Andrew Svetlov <andrew.svetlov@gmail.com> | 2012-08-11 18:14:08 (GMT) |
commit | a2fe334081295d53048dd78d16fb4352303a4991 (patch) | |
tree | 41ec61d0555f8396db5028b5547ffc541aea6274 /Doc/library/platform.rst | |
parent | b79be95dacc9824a70952e017ecbb87ce5575f6e (diff) | |
download | cpython-a2fe334081295d53048dd78d16fb4352303a4991.zip cpython-a2fe334081295d53048dd78d16fb4352303a4991.tar.gz cpython-a2fe334081295d53048dd78d16fb4352303a4991.tar.bz2 |
Issue #15527: fix docs, remove double parens by changing markup.
Patch by Serhiy Storchaka.
Diffstat (limited to 'Doc/library/platform.rst')
-rw-r--r-- | Doc/library/platform.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/platform.rst b/Doc/library/platform.rst index 57dd85b..a6a98f1 100644 --- a/Doc/library/platform.rst +++ b/Doc/library/platform.rst @@ -30,8 +30,8 @@ Cross Platform returned as strings. Values that cannot be determined are returned as given by the parameter presets. - If bits is given as ``''``, the :c:func:`sizeof(pointer)` (or - :c:func:`sizeof(long)` on Python version < 1.5.2) is used as indicator for the + If bits is given as ``''``, the ``sizeof(pointer)`` (or + ``sizeof(long)`` on Python version < 1.5.2) is used as indicator for the supported pointer size. The function relies on the system's :file:`file` command to do the actual work. |