Permalink
...
Comparing changes
Open a pull request
- 4 commits
- 1 file changed
- 0 commit comments
- 2 contributors
Commits on Jul 13, 2017
|
|
lbergelson |
64dee1e
|
Commits on Jul 17, 2017
|
|
lbergelson |
77c9f86
|
Commits on Jul 20, 2017
|
|
danbills |
080ce20
|
|||
|
|
danbills |
3de8314
|
Unified
Split
Showing
with
2 additions
and 2 deletions.
- +2 −2 SPEC.md
View
4
SPEC.md
| @@ -1912,7 +1912,7 @@ Both tasks and workflows have a typed inputs that must be satisfied in order to | ||
| :pig2: [Cromwell supported](https://github.com/broadinstitute/cromwell#wdl-support) :white_check_mark: | ||
| -Tasks define all their outputs as declarations at the top of the task definition. | ||
| +Tasks define all their inputs as declarations at the top of the task definition. | ||
| ```wdl | ||
| task test { | ||
| @@ -2582,7 +2582,7 @@ Array[Int] xs = [ 1, 2, 3 ] | ||
| Array[String] ys = [ "a", "b", "c" ] | ||
| Array[String] zs = [ "d", "e" ] | ||
| -Array[Pair[Int, String]] crossed = crossProduct(xs, zs) # i.e. crossed = [ (1, "d"), (1, "e"), (2, "d"), (2, "e"), (3, "d"), (3, "e") ] | ||
| +Array[Pair[Int, String]] crossed = cross(xs, zs) # i.e. crossed = [ (1, "d"), (1, "e"), (2, "d"), (2, "e"), (3, "d"), (3, "e") ] | ||
| ``` | ||
| ## Integer length(Array[X]) | ||