mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 08:34:33 +00:00
fix parser problem in Dict.roc
This commit is contained in:
parent
4418a99c89
commit
169e34b583
1 changed files with 5 additions and 6 deletions
|
@ -17,6 +17,5 @@ isEmpty : Dict * * -> Bool
|
|||
## See for example #Result.map, #List.map, and #Set.map.
|
||||
map :
|
||||
Dict beforeKey beforeValue,
|
||||
(\{ key: beforeKey, value: beforeValue } ->
|
||||
{ key: afterKey, value: afterValue }
|
||||
) -> Dict afterKey afterValue
|
||||
({ key: beforeKey, value: beforeValue } -> { key: afterKey, value: afterValue })
|
||||
-> Dict afterKey afterValue
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue