Skip to content

Commit 13b31fa

Browse files
committed
fix: added missing quotation marks
1 parent f8c6449 commit 13b31fa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

slides/creators/A_First_Workflow.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -435,9 +435,9 @@ \subsection{A first Step or ``Rule''}
435435
to reference our input and output in the \altverb{shell} directive, e.\,g.:
436436
\begin{lstlisting}[language=Python,style=Python]
437437
rule foo:
438-
input: replicate_1.txt,
439-
replicate_2.txt
440-
output: result.txt
438+
input: "replicate_1.txt",
439+
"replicate_2.txt"
440+
output: "result.txt"
441441
# The following command will concatenate
442442
# the input files.
443443
shell: "cat {input} > {output}"

0 commit comments

Comments
 (0)