Skip to content

Commit 80c8c3d

Browse files
Merge pull request #428 from nextflow-io/typo-fix-hello-world-7
fix typo in hello-world 7
2 parents 30c33bc + 5b1816d commit 80c8c3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/hello_nextflow/02_hello_world.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ Learn how to add in a second process and chain them together.
700700
Most real-world workflows involve more than one step. Here we introduce a second process that converts the text to uppercase (all-caps), using the classic UNIX one-liner:
701701

702702
```bash
703-
tr '[a-z]' '[A-Z]'`
703+
tr '[a-z]' '[A-Z]'
704704
```
705705

706706
We're going to run the command by itself in the terminal first to verify that it works as expected without any of the workflow code getting in the way of clarity, just like we did at the start with `echo 'Hello World'`. Then we'll write a process that does the same thing, and finally we'll connect the two processes so the output of the first serves as input to the second.

0 commit comments

Comments
 (0)