Skip to content

Commit 34fe131

Browse files
committed
renamed date module
1 parent fe10704 commit 34fe131

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CustomDate.sml renamed to DateUtil.sml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
structure CustomDate = struct
1+
structure DateUtil = struct
22
(* ************* a custom Date module ***************** *)
33

44
exception Error of string

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ MLCOMP=mlton
33

44
MOSMLC=mosmlc
55

6-
UTILFILES=CustomDate.sml ListSort.sig ListSort.sml
6+
UTILFILES=DateUtil.sml ListSort.sig ListSort.sml
77

88
all: contracts.exe
99

multicontracts.mlb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local
22
$(SML_LIB)/basis/basis.mlb
3-
CustomDate.sml
3+
DateUtil.sml
44
ListSort.sig
55
ListSort.sml
66
in

multicontracts.sml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
structure multicontracts = struct
22

3-
open CustomDate (* our own date library, day-precision and supports arithmetic *)
3+
(* our own date library, day-precision and support for arithmetic *)
4+
open DateUtil
45

56
(* Contracts *)
67
datatype currency = EUR | DKK

0 commit comments

Comments
 (0)