Skip to content

Commit 6881e4a

Browse files
committed
documentation fixes
1 parent 8e5fe49 commit 6881e4a

File tree

1 file changed

+9
-8
lines changed
  • lib/github.com/diku-dk/sml-uref

1 file changed

+9
-8
lines changed

lib/github.com/diku-dk/sml-uref/uref.sig

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
(** Unifiable references.
2-
*
3-
* Unifiable references provide a Union/Find data type with a ref-like
4-
* interface. A Union/Find structure consists of a type constructor
5-
* 'a uref with operations for creating an element of type 'a uref (uRef),
6-
* getting the contents of an element (!!), checking for equality of
7-
* two elements (equal), and for unifying two elements (unify).
8-
*)
2+
3+
Unifiable references provide a Union/Find data type with a ref-like
4+
interface. A Union/Find structure consists of a type constructor 'a
5+
uref with operations for creating an element of type 'a uref (uRef),
6+
getting the contents of an element (!!), checking for equality of two
7+
elements (equal), and for unifying two elements (unify).
8+
9+
*)
910

1011
signature UREF = sig
1112
type 'a uref
@@ -40,7 +41,7 @@ the same call to uref or if they have been unioned (see below).
4041
[compare cmp (e, e')] returns EQUAL if eq (e, e') returns true;
4142
otherwise return cmp (!!e, !!e').
4243
43-
Discussion:
44+
[Discussion]
4445
4546
The uref type constructor is analogous to the ref type constructor as
4647
expressed in the following table:

0 commit comments

Comments
 (0)