Skip to content

Commit

Permalink
doc: minor changes related to <simple-condition>
Browse files Browse the repository at this point in the history
  • Loading branch information
cgay committed Jun 13, 2024
1 parent cb5eb09 commit 1102acb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 ``<simple-condition>``.
Tests whether instance is a :class:`<simple-condition>`.
.. c:function:: D dylan_simple_condition_format_string (D instance)
Returns the format string stored in the given ``<simple-condition>``.
Returns the format string stored in the given :class:`<simple-condition>`.
.. c:function:: D dylan_simple_condition_format_args (D instance)
Returns the format string arguments stored in the given
``<simple-condition>``.
:class:`<simple-condition>`.
.. c:function:: bool dylan_class_p (D instance)
Expand Down
2 changes: 1 addition & 1 deletion documentation/source/library-reference/io/print.rst
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ IO library's *print* module.
end;
With the above method, an ``<account>`` object with name "foo" will print as
``{<account> "foo" #xDEADBEEF}``.
``{<account> "foo" 123}`` where ``123`` is a unique identifier for the object.


The pprint Module
Expand Down
2 changes: 1 addition & 1 deletion documentation/source/library-reference/network/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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:`<simple-condition>`.

Slots:
Expand Down
4 changes: 2 additions & 2 deletions documentation/source/library-reference/system/file-system.rst
Original file line number Diff line number Diff line change
Expand Up @@ -797,10 +797,10 @@ File-System module.

.. class:: <file-system-error>

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:`<error>`, :class:`<simple-condition>`
:superclasses: :drm:`<simple-error>`

:description:

Expand Down

0 comments on commit 1102acb

Please sign in to comment.