Skip to content

Commit 72d536a

Browse files
authored
M.fromList -> Map.fromList in README
1 parent b377658 commit 72d536a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The result of the call above is:
122122
Just
123123
(Result
124124
{ objectiveVar = 7 -- Integer representing objective function
125-
, varValMap = M.fromList
125+
, varValMap = Map.fromList
126126
[ (7, 29) -- Value for variable 7, so max(3x1 + 5x2) = 29.
127127
, (1, 3) -- Value for variable 1, so x1 = 3
128128
, (2, 4) -- Value for variable 2, so x2 = 4

0 commit comments

Comments
 (0)