Change name from Map to Dict.

This commit is contained in:
evancz 2012-10-16 22:03:23 -07:00
parent 7c319fe4c5
commit 453cd099ae

View file

@ -1,5 +1,5 @@
module Map (empty,singleton,insert,lookup,remove,member,fold) where
module Dict (empty,singleton,insert,lookup,remove,member,fold) where
import Data.Maybe (isJust)