Skip to content

Commit

Permalink
Remove reference to old run param in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
samirelanduk committed May 25, 2023
1 parent f364644 commit 5a79bfd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Example
-------

>>> import nextflow
>>> execution = nextflow.run(path="main.nf", params={"param1": "123"})
>>> execution = nextflow.run("main.nf", params={"param1": "123"})
>>> print(execution.status)


Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Example
-------

>>> import nextflow
>>> execution = nextflow.run(path="main.nf", params={"param1": "123"})
>>> execution = nextflow.run("main.nf", params={"param1": "123"})
>>> print(execution.status)

Table of Contents
Expand Down

0 comments on commit 5a79bfd

Please sign in to comment.