@@ -44,26 +44,26 @@ PyAnsys libraries, adhere to the additional style guidelines that follow.
44
44
45
45
Short Summary
46
46
-------------
47
- This is a single- line that goes right after the declaration of the class or
48
- function for briefly describing what the class or function or does. The
47
+ This is a single line that goes immediately after the declaration of the class
48
+ or function to briefly describe what the class or function does. The
49
49
`short summary ` is mandatory. If it is not present, :ref: `Doc Style Tools ` will
50
50
raise an error.
51
51
52
52
The short summary can be declared on the same line as the opening quotes or on
53
53
the next line. While `PEP 257
54
54
<https://peps.python.org/pep-0257> `_ accepts both ways, you must be consistent across your
55
55
project. If you decide to declare the short summary on the same line,
56
- refer to :ref: `Numpydoc Validation ` because the ``"GL01" `` check needs to be
56
+ refer to :ref: `Numpydoc Validation ` because the ``"GL01" `` check must be
57
57
disabled.
58
58
59
- Depending in whether you are documenting a `` Class `` or a `` function ``, you will
60
- need to apply different `` short-summary `` guidelines .
59
+ The guidelines for documenting short summaries differ for classes versus
60
+ functions .
61
61
62
- Short Summary for Classes
63
- ~~~~~~~~~~~~~~~~~~~~~~~~~
62
+ Short Summaries for Classes
63
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
64
64
A class is a 'noun' representing a collection of methods. For consistency within PyAnsys libraries,
65
65
always start the brief description for a class with a verb ending in 's', followed by an extended
66
- summary in a new line if applicable ::
66
+ summary in a new line if additional information is needed ::
67
67
68
68
class FieldAnalysis3D(Analysis):
69
69
"""Manages 3D field analysis setup in HFSS, Maxwell 3D, and Q3D.
@@ -76,11 +76,11 @@ summary in a new line if applicable::
76
76
77
77
Ensure that there is a line break between the end of a class docstring and the subsequent methods.
78
78
79
- Short Summary for Methods
80
- ~~~~~~~~~~~~~~~~~~~~~~~~~
79
+ Short Summaries for Methods
80
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
81
81
A method is a 'verb' representing an action that can be performed. For consistency within PyAnsys
82
82
libraries, always start the brief description for a method with a verb not ending in 's', followed
83
- by an extended summary in a new line if applicable ::
83
+ by an extended summary in a new line if additional information is needed ::
84
84
85
85
def export_mesh_stats(self, setup_name, variation_string="", mesh_path=None):
86
86
"""Export mesh statistics to a file.
@@ -176,7 +176,7 @@ A class does not have a ``Returns`` section. If a ``Boolean`` is returned, forma
176
176
bool
177
177
``True`` when successful, ``False`` when failed.
178
178
179
- It is possible for the ``Returns `` section to look like the ``Parameters `` one
179
+ It is possible for the ``Returns `` section to look like the ``Parameters `` section
180
180
if variable names are provided:
181
181
182
182
.. code-block :: rst
@@ -199,15 +199,15 @@ It is possible for more than one item to be returned:
199
199
200
200
If a method does not have a decorator, the basic implementation of Python
201
201
methods is used. In this case, while ``None `` is returned, you do not document it.
202
- Consequently, such a method does not have a ' Returns' section.
202
+ Consequently, such a method does not have a `` Returns `` section.
203
203
204
204
Examples
205
205
--------
206
206
207
207
The ``Examples `` section provides a quick reference on how to use a method or
208
- function. This section needs to be compliant with the `doctest
208
+ a function. This section must be compliant with the `doctest
209
209
<https://docs.python.org/3/library/doctest.html> `_ format and is not supposed to
210
- be a replacement of your test suite but a complement to it. An an example,
210
+ replace your test suite but complement it. As an example,
211
211
consider the following function:
212
212
213
213
.. code-block :: rst
@@ -223,8 +223,8 @@ consider the following function:
223
223
pyaedt info: Active design is set to...
224
224
225
225
226
- Notice that if the definition of the function gets updated, this
227
- section needs to be updated too.
226
+ If the definition of the function is updated, this
227
+ section must be updated too.
228
228
229
229
230
230
Additional Directives
0 commit comments