File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ signatures of many of the functions defined in this module.
43
43
For example, the ` add ` function has the signature ` elt -> t -> t ` , which means
44
44
that it expects an element (a String), and a set of strings, and will return to you
45
45
a set of strings. As you gain more experience in OCaml and other functional languages,
46
- the type signature of functions are often the most convenient form of documentation
46
+ the type signature of functions are often a basic but very convenient form of documentation
47
47
on how to use those functions.
48
48
49
49
## Creating a Set
@@ -143,7 +143,7 @@ SS.cardinal secondSet;;
143
143
144
144
It looks like our theories were correct!
145
145
146
- ## Sets of With Custom Comparators
146
+ ## Sets With Custom Comparators
147
147
148
148
The ` SS ` module we created uses the built-in comparison function provided
149
149
by the ` String ` module, which performs a case-sensitive comparison. We
You can’t perform that action at this time.
0 commit comments