Skip to content

Commit cd2b845

Browse files
committed
_Section_s shouldn't be used here...
1 parent 7df50e8 commit cd2b845

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

examples/document.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class Paragraph(Base):
1212
A model of a paragraph.
1313
1414
Args:
15-
contents: Paragraph contents, which make up the _Section_s.
15+
contents: Paragraph contents, which make up the :class:`Section`s.
1616
"""
1717

1818
contents: str = field(validator=instance_of(str))

examples/document.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ A model of a paragraph.
4949

5050
**Allowed parameters**
5151

52-
=============== =========== ===================================================
52+
=============== =========== ===============================================================
5353
Allowed field Data Type Description
54-
=============== =========== ===================================================
55-
**contents** str *Paragraph contents, which make up the _Section_s.*
56-
=============== =========== ===================================================
54+
=============== =========== ===============================================================
55+
**contents** str *Paragraph contents, which make up the `Section <#section>`_s.*
56+
=============== =========== ===============================================================

examples/document.specification.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"allowed_parameters": {
4343
"contents": {
4444
"type": "str",
45-
"description": "Paragraph contents, which make up the _Section_s."
45+
"description": "Paragraph contents, which make up the :class:`Section`s."
4646
}
4747
}
4848
}

examples/document.specification.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ Paragraph:
3030
allowed_parameters:
3131
contents:
3232
type: str
33-
description: Paragraph contents, which make up the _Section_s.
33+
description: Paragraph contents, which make up the :class:`Section`s.

0 commit comments

Comments
 (0)