Skip to content

Commit 0f79999

Browse files
Apply suggestions from code review
Co-authored-by: Chris Hakkaart <[email protected]> Signed-off-by: Ben Sherman <[email protected]>
1 parent a4f6f70 commit 0f79999

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/migrations/25-04.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ workflow {
6262
}
6363
```
6464

65-
This syntax allows you to declare all parameters in one place, and allows Nextflow to validate parameters at runtime.
65+
This syntax allows you to declare all parameters in one place and allows Nextflow to validate them at runtime.
6666

6767
See {ref}`workflow-params-def` for details.
6868

docs/vscode.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The language server parses scripts and config files according to the {ref}`Nextf
2626

2727
When you hover over certain source code elements, such as variable names and function calls, the extension provides a tooltip with related information, such as the definition and/or documentation for the element.
2828

29-
If a [Javadoc](https://en.wikipedia.org/wiki/Javadoc) comment is defined above a workflow, process, function, type definition, or parameter in a `params` block, the extension will include the contents of the comment in hover hints. Here is an example Javadoc comment:
29+
If a [Javadoc](https://en.wikipedia.org/wiki/Javadoc) comment is defined above a workflow, process, function, type definition, or parameter in a `params` block, the extension will include the contents of the comment in hover hints. The following is an example Javadoc comment:
3030

3131
```nextflow
3232
/**

docs/workflow.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ workflow {
2626

2727
## Parameters
2828

29-
There are two ways to declare parameters in a Nextflow script: the `params` block and *legacy* parameters.
29+
Parameters can be declared in a Nextflow script with the `params` block or with *legacy* parameter declarations.
3030

3131
### Params block
3232

0 commit comments

Comments
 (0)