fix argument order bug in hash-update

This commit is contained in:
Sam Caldwell 2019-05-15 16:05:30 -04:00
parent 8819af878e
commit 309d6867d9
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@
[hash-ref : ( (K V) (→fn (Hash K V) K V))]
;; TODO hash-ref/failure
[hash-has-key? : ( (K V) (→fn (Hash K V) K Bool))]
[hash-update : ( (K V) (→fn (Hash K V) (→fn V V) K (Hash K V)))]
[hash-update : ( (K V) (→fn (Hash K V) K (→fn V V) (Hash K V)))]
;; TODO hash-update/failure
[hash-remove : ( (K V) (→fn (Hash K V) K (Hash K V)))]
[hash-map : ( (K V R) (→fn (Hash K V) (→fn K V R) (List R)))]