Skip to content

Commit 182a5c2

Browse files
authored
Merge pull request #559 from mashehu/patch-1
add missing trailing periods
2 parents 718f352 + 72d6eab commit 182a5c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/hello_nextflow/01_hello_world.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Each **process** describes what operation(s) the corresponding step in the pipel
122122

123123
Let's take a closer look at the **process** block first, then we'll look at the **workflow** block.
124124

125-
### 1.2 The `process` definition
125+
### 1.2. The `process` definition
126126

127127
The first block of code describes a **process**.
128128
The process definition starts with the keyword `process`, followed by the process name and finally the process body delimited by curly braces.
@@ -165,7 +165,7 @@ Another common qualifier is `val`.
165165

166166
In a real-world pipeline, a process usually contains additional blocks such as directives and inputs, which we'll introduce in a little bit.
167167

168-
### 1.3 The `workflow` definition
168+
### 1.3. The `workflow` definition
169169

170170
The second block of code describes the **workflow** itself.
171171
The workflow definition starts with the keyword `workflow`, followed by an optional name, then the workflow body delimited by curly braces.

0 commit comments

Comments
 (0)