Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also .

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also .
...
  • 4 commits
  • 1 file changed
  • 0 commit comments
  • 2 contributors
Commits on Jul 13, 2017
@lbergelson lbergelson fixing typo in cross example
replacing incorrect use of crossProduct with cross
64dee1e
Commits on Jul 17, 2017
@lbergelson lbergelson Merge pull request #122 from broadinstitute/lb_fix_typo
fixing typo in cross example
77c9f86
Commits on Jul 20, 2017
@danbills danbills Update SPEC.md
080ce20
@danbills danbills Merge pull request #124 from broadinstitute/db_task_inputs
Fix typo in SPEC.md
3de8314
Showing with 2 additions and 2 deletions.
  1. +2 −2 SPEC.md
View
@@ -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])

No commit comments for this range