Skip to content

Commit

Permalink
Docs: Fix import typos in example snippets (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxrider authored Jan 29, 2024
1 parent 7af9d1b commit e3af3f0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/workflows/base/relax/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ A typical script for the submission of common relax workflow could look somethin
.. code:: python
from aiida.engine import submit
from aiida.plugin import WorkflowFactory
from aiida.plugins import WorkflowFactory
RelaxWorkChain = WorkflowFactory('common_workflows.relax.<implementation>') # Load the relax workflow implementation of choice.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/workflows/composite/dc.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ A typical script for the submission of common DC workflow could look something l
from aiida.orm import List, Dict
from aiida.engine import submit
from aiida.plugin import WorkflowFactory
from aiida.plugins import WorkflowFactory
cls = WorkflowFactory('common_workflows.dissociation_curve')
Expand Down
2 changes: 1 addition & 1 deletion docs/source/workflows/composite/eos.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ A typical script for the submission of common EoS workflow could look something
from aiida.orm import List, Dict
from aiida.engine import submit
from aiida.plugin import WorkflowFactory
from aiida.plugins import WorkflowFactory
cls = WorkflowFactory('common_workflows.eos')
Expand Down

0 comments on commit e3af3f0

Please sign in to comment.