Skip to content

Commit

Permalink
update changelog, fix #662
Browse files Browse the repository at this point in the history
  • Loading branch information
jdidion committed Jun 26, 2024
1 parent 100e82f commit edd1d9b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ version 1.2.0
version 1.1.3
---------------------------

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

version 1.1.2
---------------------------
Expand Down
26 changes: 14 additions & 12 deletions SPEC.md
Original file line number Diff line number Diff line change
Expand Up @@ -1750,18 +1750,20 @@ workflow map_to_struct {
String b = "key"
String c = "lookup"
# What are the keys to this Struct?
Words literal_syntax = Words {
a: 10,
b: 11,
c: 12
}
# What are the keys to this Struct?
Words map_coercion = {
a: 10,
b: 11,
c: 12
output {
# What are the keys to this Struct?
Words literal_syntax = Words {
a: 10,
b: 11,
c: 12
}
# What are the keys to this Struct?
Words map_coercion = {
a: 10,
b: 11,
c: 12
}
}
}
```
Expand Down

0 comments on commit edd1d9b

Please sign in to comment.