Skip to content

Commit

Permalink
update changelog, fix #665, #666
Browse files Browse the repository at this point in the history
  • Loading branch information
jdidion committed Jun 26, 2024
1 parent 71070a0 commit c5c7c0f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ version development
version 1.1.3
---------------------------

* Fix issues with examples (#653, #654, #661, #662, #663, #664). Thanks to @stxue1!
* Fix issues with examples (#653, #654, #661, #662, #663, #664, #665, #666). Thanks to @stxue1!

version 1.1.2
---------------------------
Expand Down
10 changes: 5 additions & 5 deletions SPEC.md
Original file line number Diff line number Diff line change
Expand Up @@ -6058,12 +6058,12 @@ workflow if_else {
# the body *is not* evaluated since 'b' is false
if (is_morning) {
call greet as morning { time = "morning" }
call greet as morning { input: time = "morning" }
}
# the body *is* evaluated since !b is true
if (!is_morning) {
call greet as afternoon { time = "afternoon" }
call greet as afternoon { input: time = "afternoon" }
}
output {
Expand Down Expand Up @@ -6108,7 +6108,7 @@ workflow nested_if {
if (morning) {
if (friendly) {
call if_else.greet { time = "morning" }
call if_else.greet { input: time = "morning" }
}
}
Expand Down Expand Up @@ -8094,7 +8094,7 @@ workflow test_prefix {
Array[Int] env2 = [1, 2, 3]
output {
Array[String] env_prefixed = prefix("-e ", env1)
Array[String] env1_prefixed = prefix("-e ", env1)
Array[String] env2_prefixed = prefix("-f ", env2)
}
}
Expand Down Expand Up @@ -9868,7 +9868,7 @@ Example output:

```json
{
"serialize_array_delim.strings": [
"serialize_array_delim.heads": [
"hello world",
"hello world",
"hi_world"
Expand Down

0 comments on commit c5c7c0f

Please sign in to comment.