Skip to content

Commit 7366ec8

Browse files
committed
Fix typo
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
1 parent 1c2fb86 commit 7366ec8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/nextflow/script/control/TypeCheckingVisitorEx.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ public void visitProcessV2(ProcessNodeV2 node) {
228228
visitProcessDirectives(node.directives);
229229
visit(node.stagers);
230230
if( !(node.when instanceof EmptyExpression) )
231-
addError("Process `when` section is not supported with static typing -- use conditinal logic in the calling workflow instead", node.when);
231+
addError("Process `when` section is not supported with static typing -- use conditional logic in the calling workflow instead", node.when);
232232
visit(node.when);
233233
visit(node.exec);
234234
visit(node.stub);
@@ -388,7 +388,7 @@ private void applyTupleAssignment(TupleExpression target, ClassNode sourceType)
388388
addError("Tuple assignment is not compatible with type " + TypesEx.getName(sourceType), target);
389389
return;
390390
}
391-
391+
392392
var vars = target.getExpressions();
393393
var gts = sourceType.getGenericsTypes();
394394
if( gts == null )

0 commit comments

Comments
 (0)