Skip to content

Commit 42014a5

Browse files
committed
Add comments in code snippet.
1 parent e0b4f64 commit 42014a5

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PyAEDT supports AEDT versions 2021 R1 or newer.
4848
Student Version
4949
---------------
5050

51-
PyAEDT now supports supports also AEDT Student version 2021 R2. Visit
51+
PyAEDT now supports also AEDT Student version 2021 R2. Visit
5252
`Student Version page <https://www.ansys.com/academic/students/ansys-e
5353
lectronics-desktop-student>`_
5454
for more info.
@@ -57,7 +57,7 @@ for more info.
5757
Why PyAEDT?
5858
-----------
5959
A quick and easy approach for automating a simple operation in the
60-
AEDT UI is to record and reuse a scripts. However, disadvantages of
60+
AEDT UI is to record and reuse a script. However, disadvantages of
6161
this approach are:
6262

6363
- Recorded code is dirty and difficult to read and understand.
@@ -97,7 +97,7 @@ Explicit Desktop Declaration and Error Management
9797

9898
.. code:: python
9999
100-
Launch AEDT 2021 R1 in Non-Graphical mode
100+
# Launch AEDT 2021 R1 in Non-Graphical mode
101101
102102
from pyaedt import Desktop, Circuit
103103
with Desktop(specified_version="2021.1",
@@ -116,9 +116,9 @@ Implicit Desktop Declaration and Error Management
116116

117117
.. code:: python
118118
119-
Launch the latest installed version of AEDT in graphical mode
119+
# Launch the latest installed version of AEDT in graphical mode
120120
121-
from pyaedt import Circuit
121+
from pyaedt import Circuit
122122
with Circuit(specified_version="2021.2",
123123
non_graphical=False) as circuit:
124124
...
@@ -141,7 +141,7 @@ On a CPython Server
141141
launch_server()
142142
143143
144-
On any windows client machine
144+
On any Windows client machine
145145

146146
.. code:: python
147147
@@ -166,7 +166,7 @@ Modeler
166166

167167
.. code:: python
168168
169-
Create a box, assign variables, and assign materials.
169+
# Create a box, assign variables, and assign materials.
170170
171171
from pyaedt.hfss import Hfss
172172
with Hfss as hfss:
@@ -181,7 +181,7 @@ This PyAEDT module makes no commercial claim over Ansys
181181
whatsoever. PyAEDT extends the functionality of AEDT by adding
182182
an additional Python interface to AEDT without changing the core
183183
behavior or license of the original software. The use of the
184-
interactive APDL control of PyAEDT requires a legally licensed
184+
interactive control of PyAEDT requires a legally licensed
185185
local copy of AEDT. For more information about AEDT,
186186
visit the `AEDT page <https://www.ansys.com/products/electronics>`_
187187
on the Ansys website.

0 commit comments

Comments
 (0)