From 1102acb68daa286074a46634acdd9a66089e37c6 Mon Sep 17 00:00:00 2001 From: Carl Gay Date: Mon, 10 Jun 2024 11:01:20 -0400 Subject: [PATCH] doc: minor changes related to --- .../source/getting-started-cli/debugging-with-gdb-lldb.rst | 6 +++--- documentation/source/library-reference/io/print.rst | 2 +- documentation/source/library-reference/network/index.rst | 2 +- .../source/library-reference/system/file-system.rst | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/documentation/source/getting-started-cli/debugging-with-gdb-lldb.rst b/documentation/source/getting-started-cli/debugging-with-gdb-lldb.rst index 53760b282..c028e0b00 100644 --- a/documentation/source/getting-started-cli/debugging-with-gdb-lldb.rst +++ b/documentation/source/getting-started-cli/debugging-with-gdb-lldb.rst @@ -361,16 +361,16 @@ and will assist you in analyzing values. .. c:function:: bool dylan_simple_condition_p (D instance) - Tests whether instance is a ````. + Tests whether instance is a :class:``. .. c:function:: D dylan_simple_condition_format_string (D instance) - Returns the format string stored in the given ````. + Returns the format string stored in the given :class:``. .. c:function:: D dylan_simple_condition_format_args (D instance) Returns the format string arguments stored in the given - ````. + :class:``. .. c:function:: bool dylan_class_p (D instance) diff --git a/documentation/source/library-reference/io/print.rst b/documentation/source/library-reference/io/print.rst index 13238a888..99baac3f7 100644 --- a/documentation/source/library-reference/io/print.rst +++ b/documentation/source/library-reference/io/print.rst @@ -349,7 +349,7 @@ IO library's *print* module. end; With the above method, an ```` object with name "foo" will print as - ``{ "foo" #xDEADBEEF}``. + ``{ "foo" 123}`` where ``123`` is a unique identifier for the object. The pprint Module diff --git a/documentation/source/library-reference/network/index.rst b/documentation/source/library-reference/network/index.rst index 9010201d8..226698d4c 100644 --- a/documentation/source/library-reference/network/index.rst +++ b/documentation/source/library-reference/network/index.rst @@ -731,7 +731,7 @@ This section lists the socket condition classes in the Network library. :description: The class of socket conditions. It inherits the ``format-string:`` - and ``format-arguments:`` keywords from + and ``format-arguments:`` init keywords from :class:``. Slots: diff --git a/documentation/source/library-reference/system/file-system.rst b/documentation/source/library-reference/system/file-system.rst index 4c2245662..3b5d9efab 100644 --- a/documentation/source/library-reference/system/file-system.rst +++ b/documentation/source/library-reference/system/file-system.rst @@ -797,10 +797,10 @@ File-System module. .. class:: - Error type signaled when any other functions in the File-System + Error type signaled when any of the functions in the File-System module signal an error. - :superclasses: :drm:``, :class:`` + :superclasses: :drm:`` :description: