Skip to content

Commit faf00ac

Browse files
committed
Apply code suggestions
1 parent 5ba7308 commit faf00ac

File tree

3 files changed

+28
-29
lines changed

3 files changed

+28
-29
lines changed

doc/source/doc-style/docstrings.rst

+17-17
Original file line numberDiff line numberDiff line change
@@ -44,26 +44,26 @@ PyAnsys libraries, adhere to the additional style guidelines that follow.
4444

4545
Short Summary
4646
-------------
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
4949
`short summary` is mandatory. If it is not present, :ref:`Doc Style Tools` will
5050
raise an error.
5151

5252
The short summary can be declared on the same line as the opening quotes or on
5353
the next line. While `PEP 257
5454
<https://peps.python.org/pep-0257>`_ accepts both ways, you must be consistent across your
5555
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
5757
disabled.
5858

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.
6161

62-
Short Summary for Classes
63-
~~~~~~~~~~~~~~~~~~~~~~~~~
62+
Short Summaries for Classes
63+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
6464
A class is a 'noun' representing a collection of methods. For consistency within PyAnsys libraries,
6565
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::
6767

6868
class FieldAnalysis3D(Analysis):
6969
"""Manages 3D field analysis setup in HFSS, Maxwell 3D, and Q3D.
@@ -76,11 +76,11 @@ summary in a new line if applicable::
7676

7777
Ensure that there is a line break between the end of a class docstring and the subsequent methods.
7878

79-
Short Summary for Methods
80-
~~~~~~~~~~~~~~~~~~~~~~~~~
79+
Short Summaries for Methods
80+
~~~~~~~~~~~~~~~~~~~~~~~~~~~
8181
A method is a 'verb' representing an action that can be performed. For consistency within PyAnsys
8282
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::
8484

8585
def export_mesh_stats(self, setup_name, variation_string="", mesh_path=None):
8686
"""Export mesh statistics to a file.
@@ -176,7 +176,7 @@ A class does not have a ``Returns`` section. If a ``Boolean`` is returned, forma
176176
bool
177177
``True`` when successful, ``False`` when failed.
178178
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
180180
if variable names are provided:
181181

182182
.. code-block:: rst
@@ -199,15 +199,15 @@ It is possible for more than one item to be returned:
199199
200200
If a method does not have a decorator, the basic implementation of Python
201201
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.
203203

204204
Examples
205205
--------
206206

207207
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
209209
<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,
211211
consider the following function:
212212

213213
.. code-block:: rst
@@ -223,8 +223,8 @@ consider the following function:
223223
pyaedt info: Active design is set to...
224224
225225
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.
228228

229229

230230
Additional Directives

doc/source/doc-style/formatting-tools.rst

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
Doc Style Tools
22
===============
3-
43
There are plenty of tools for documentation style and coverage. This section
54
presents some of the most popular ones in the Python ecosystem. A minimum
65
configuration is provided for each one so you can easily include them in your
@@ -15,7 +14,7 @@ Blacken-Docs
1514
------------
1615

1716
When writing documentation, it is frequent to include code-blocks which are used
18-
as examples. However, these code snippets cannot be tested with the usual code
17+
as examples. However, these code snippets style cannot be verified with the usual code
1918
formatting tools. This is where `blacken-docs`_ comes into play. You can execute
2019
this tool by running:
2120

@@ -87,13 +86,13 @@ for source code coverage.
8786

8887
Numpydoc Validation
8988
-------------------
90-
In order to validate the style of :ref:`Numpydoc Docstrings`, it is possible to
91-
take advantage of `numpydoc`_ Sphinx extension. Note that this extension will
92-
only check for those objcts whose docstring needs to be rendered. It is not a
93-
command line tool which checks all docstrings style in your source code.
89+
To validate the style of :ref:`Numpydoc Docstrings`, it is possible to
90+
take advantage of the `numpydoc`_ Sphinx extension. Note that this extension
91+
checks only for those objects whose docstrings must be rendered. It is not a
92+
command line tool that checks the style of all docstrings in your source code.
9493

95-
Because it is a Sphinx extension, it needs to be configured via through the
96-
``conf.py``. see :ref:`The \`\`doc/\`\` directory`. Start by adding it to the
94+
Because `numpydoc`_ is a Sphinx extension, it must be configured in the
95+
``conf.py`` file. See :ref:`The \`\`doc/\`\` directory`. Start by adding it to the
9796
list of extensions:
9897

9998
.. code-block:: python
@@ -103,7 +102,7 @@ list of extensions:
103102
...
104103
]
105104
106-
Once added, you can select which `validation checks
105+
Once the `numpydoc`_ extension is added, you can select which `validation checks
107106
<https://numpydoc.readthedocs.io/en/latest/validation.html#built-in-validation-checks>`_
108107
need to be addressed by using the ``numpydoc_validation_checks`` dictionary:
109108

@@ -117,7 +116,7 @@ This will issue the following warning for any object without a docstring:
117116
118117
"The object does not have a docstring"
119118
120-
For a complete list of available checks, please check the `full mapping of
119+
For a complete list of available checks, see the `full mapping of
121120
validation checks
122121
<https://numpydoc.readthedocs.io/en/latest/validation.html#built-in-validation-checks>`_.
123122

doc/source/guidelines/doc_practices.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Google style docstrings, refers you to the `Google Python Style Guide
5353

5454
Regardless of the extension that you choose for generating documentation, we
5555
recommend the use of numpy-style docstrings so that there is consistency
56-
across PyAnsys libraries. For more information, see :ref:`Documentation Style`.
56+
within PyAnsys libraries. For more information, see :ref:`Documentation Style`.
5757

5858
RST Files
5959
~~~~~~~~~
@@ -249,7 +249,7 @@ For example, the Granta MI BoM Analytics
249249
:external+grantami-bomanalytics:doc:`Part Compliance page <api/compliance/parts>`
250250
first describes the
251251
:external+grantami-bomanalytics:class:`~ansys.grantami.bomanalytics.queries.PartComplianceQuery`
252-
class, and then describes the
252+
class, and then it describes the
253253
:external+grantami-bomanalytics:class:`~ansys.grantami.bomanalytics._query_results.PartComplianceQueryResult`,
254254
and
255255
:external+grantami-bomanalytics:class:`~ansys.grantami.bomanalytics._item_results.PartWithComplianceResult`

0 commit comments

Comments
 (0)