Skip to content

Commit c1ef1b0

Browse files
PipKatPProfizi
andauthored
Apply suggestions from code review
Incorporate Paul's comments Co-authored-by: PProfizi <[email protected]>
1 parent 7d828f7 commit c1ef1b0

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

docs/source/concepts/stepbystep.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Data can come from two sources:
2222
defining where the result files are located.
2323
- **Manual input in DPF:** You can create fields of data in DPF.
2424

25-
Once you specify data sources or manually create fields in PDF,
25+
Once you specify data sources or manually create fields in DPF,
2626
you can create field containers (if applicable) and define scopings to
2727
identify the subset of data that you want to evaluate.
2828

docs/source/getting_started/compatibility.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Update Python environment
7171
-------------------------
7272

7373
When moving from one Ansys release to another, you must update the ``ansys-dpf-core`` package and its dependencies.
74-
To get the latest version of the ``ansys-dpf-core`` package, use this cocommand:
74+
To get the latest version of the ``ansys-dpf-core`` package, use this command:
7575

7676
.. code::
7777

docs/source/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Here is how you plot displacement results:
5050
>>> disp = model.results.displacement().X()
5151
>>> model.metadata.meshed_region.plot(disp.outputs.fields_container())
5252
53-
For comprehensive examples of how you use DPF-Core, see :ref:`gallery`.
53+
For comprehensive examples of how you use PyDPF-Core, see :ref:`gallery`.
5454

5555

5656
Key features
@@ -71,7 +71,7 @@ field, physics solution, or file format.
7171
DPF is developed around two core entities:
7272

7373
- Data represented as a **field**
74-
- An **operator**to act upon this data
74+
- An **operator** to act upon this data
7575

7676
Each DPF capability is developed through operators that allow for componentization
7777
of the framework. Because DPF is plugin-based, new features or formats can be easily added.

docs/source/user_guide/fields_container.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Access the field based on its time set ID:
9292
field = fields.get_field_by_time_id(1)
9393
9494
To access fields for more complex requests, you can use the
95-
``get_field ()`` method with the ID of the requested field:
95+
``get_field()`` method with the ID of the requested field:
9696

9797
.. code-block::
9898

docs/source/user_guide/server_context.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ Change the default server context
9999
---------------------------------
100100

101101
The default context for the server is **Entry**. You can change the context using
102-
the `ANSYS_DPF_SERVER_CONTEXT`` environment variable. For more information, see
103-
:class: `<ansys.dpf.core.server_context>`). You can also change the server context
102+
the ``ANSYS_DPF_SERVER_CONTEXT`` environment variable. For more information, see
103+
the :module: `<ansys.dpf.core.server_context>` module). You can also change the server context
104104
with this code:
105105

106106
.. code-block::

examples/04-file-IO/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
File manipulation and input-output examples
44
===========================================
55
These examples show how to manipulate files,
6-
importing or exporting from or to specific formats.
6+
as well as importing or exporting from or to specific formats.

0 commit comments

Comments
 (0)