Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz authored Nov 7, 2023
1 parent ad25ddc commit 1dcd6d0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/source/development/architecture.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Architecture
Wizards-like UI
================

QuantumESPRESSO app uses the [Wizards-like UI design](https://en.wikipedia.org/wiki/Wizard_(software)), which divides one calculation into four steps.
QuantumESPRESSO app uses the `Wizards-like UI design <https://en.wikipedia.org/wiki/Wizard_(software)>`_, which divides one calculation into four steps.
Each step may contain several sections (panels), as shown in the figure below.

.. image:: ../_static/images/plugin_step.png
Expand Down
12 changes: 6 additions & 6 deletions docs/source/development/plugin.rst
Original file line number Diff line number Diff line change
Expand Up @@ -274,10 +274,10 @@ You need to add the path of ``eos`` to ``entry_points`` inside the setup file.
.. code-block:: python
entry_points={
"aiidalab_qe.properties": [
"eos = aiidalab_qe_plugin_demos.eos:eos",
],
},
"aiidalab_qe.properties": [
"eos = aiidalab_qe_plugin_demos.eos:eos",
],
},
**Bringing It All Together**, you can find all the code above in the `aiidalab-qe-plugin-demos`_ repository.

Expand Down Expand Up @@ -322,8 +322,8 @@ Here is the entry point for the `surface` plugin.
from .editor import SurfaceEditor
surface ={
"importer": SurfaceImporter,
"editor": SurfaceEditor,
"importer": SurfaceImporter,
"editor": SurfaceEditor,
}
Computational Resources
Expand Down

0 comments on commit 1dcd6d0

Please sign in to comment.