Skip to content

Commit 3d0f927

Browse files
committed
Fix typo
Signed-off-by: Paolo Di Tommaso <[email protected]>
1 parent c3c0537 commit 3d0f927

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/nextflow/src/main/groovy/nextflow/script/ProcessDef.groovy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ class ProcessDef extends BindableDef implements IterableDef, ChainableDef {
196196
final param = (declaredOutputs[i] as BaseOutParam)
197197
final topicName = param.channelTopicName
198198
if( topicName && feedbackChannels )
199-
throw new IllegalArgumentException("Output topic conflict with recursion feature - check process '$name' should not declared any outout 'topic'" )
199+
throw new IllegalArgumentException("Output topic conflict with recursion feature - check process '$name' should not declared any output 'topic'" )
200200
final ch = feedbackChannels
201201
? feedbackChannels[i]
202202
: ( topicName ? CH.topicWriter(topicName) : CH.create(singleton) )

0 commit comments

Comments
 (0)