Skip to content

Commit 7fd5096

Browse files
committed
fix: corrects example
1 parent c63fe33 commit 7fd5096

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SPEC.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11327,15 +11327,15 @@ Example: variants.wdl
1132711327
```wdl
1132811328
version 1.3
1132911329
11330-
Enum file_type = {
11330+
enum FileType {
1133111331
FASTQ,
1133211332
SAM,
1133311333
BAM,
1133411334
CRAM
1133511335
}
1133611336
1133711337
workflow variants {
11338-
scatter(type in variants(file_type)) {
11338+
scatter(type in variants(FileType)) {
1133911339
call say_file_type { type }
1134011340
}
1134111341

0 commit comments

Comments
 (0)