Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 authored Nov 8, 2023
1 parent ea508a2 commit e273c53
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions doc/source/user_guide/mapdl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ start with ``star (*)``.
.. tab-item:: Python
:sync: key2

.. code:: python
.. code:: Python
mapdl.startstatus()
mapdl.slashsolu()
Expand All @@ -84,7 +84,7 @@ or, these commands can be called using keyword arguments:
.. tab-item:: Python
:sync: key2

.. code:: python
.. code:: Python
mapdl.esel("s", "type", "", 1)
mapdl.esel("s", "type", vmin=1)
Expand All @@ -106,7 +106,7 @@ these commands, such as ``"/SOLU"``:
.. tab-item:: Python
:sync: key2

.. code:: python
.. code:: Python
# The next three functions are equivalent. Enter the solution processor.
mapdl.run("/SOLU")
Expand Down Expand Up @@ -252,7 +252,7 @@ a file) do not appear to run correctly. For example, here is the macro
.. tab-item:: Python
:sync: key2

.. code:: python
.. code:: Python
def DISP(
ARG1="",
Expand Down Expand Up @@ -421,7 +421,7 @@ attribute. For example:
.. tab-item:: Python-Non interactive
:sync: key3

.. code:: python
.. code:: Python
with mapdl.non_interactive:
mapdl.run("*IF,ARG1,EQ,0,THEN")
Expand All @@ -446,7 +446,7 @@ attribute. For example:
.. tab-item:: Python
:sync: key2

.. code:: python
.. code:: Python
# MAPDL parameters can be obtained using load_parameters
if ARG1 == 0:
Expand Down

0 comments on commit e273c53

Please sign in to comment.