Skip to content

Commit 1c8e4d3

Browse files
authored
Fix docs typo for ternary operator (#6194) [ci skip]
1 parent 629a13b commit 1c8e4d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/reference/process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,7 @@ process hello {
848848
errorStrategy 'retry'
849849
maxSubmitAwait '10 mins'
850850
maxRetries 3
851-
queue "${task.submitAttempt==1 : 'spot-compute' : 'on-demand-compute'}"
851+
queue "${task.submitAttempt==1 ? 'spot-compute' : 'on-demand-compute'}"
852852
853853
script:
854854
"""

0 commit comments

Comments
 (0)