Skip to content

Commit

Permalink
Add consistency for newlines/indentation
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Ribeiro-Dantas <[email protected]>
  • Loading branch information
mribeirodantas committed Jan 12, 2024
1 parent 2585953 commit 039ed6e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs/basic_training/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ nextflow run hello.nf -params-file params.json

```json linenums="1" title="params.json"
{
"greeting": "Hallo Welt!"
"greeting": "Hallo Welt!"
}
```

Expand Down Expand Up @@ -125,9 +125,9 @@ Configuration files use the same conventions for comments used in the Nextflow s
// comment a single line
/*
a comment spanning
multiple lines
*/
a comment spanning
multiple lines
*/
```

### Config scopes
Expand Down
2 changes: 1 addition & 1 deletion docs/basic_training/executors.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ process {
withName: FOO {
container = 'some/image:x'
}
withName: BAR {
container = 'other/image:y'
}
Expand Down Expand Up @@ -214,7 +215,6 @@ profiles {
process.container = 'cbcrg/imagex'
docker.enabled = true
}
}
```

Expand Down
2 changes: 1 addition & 1 deletion docs/basic_training/operators.md
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ And even a JSON array of JSON objects:
```groovy linenums="1" title="snippet.nf"
Channel
.of('[{"name": "Bob", "height": 180, "champion": false}, \
{"name": "Alice", "height": 170, "champion": false}]')
{"name": "Alice", "height": 170, "champion": false}]')
.splitJson()
.view()
```
Expand Down

0 comments on commit 039ed6e

Please sign in to comment.