Skip to content

Commit 60615d9

Browse files
Cuihtlauac ALVARADOsabine
Cuihtlauac ALVARADO
authored andcommitted
Minor Fixes
As pointed by @Octachron
1 parent caf82b1 commit 60615d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data/tutorials/language/3ds_03_set.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ signatures of many of the functions defined in this module.
4242
For example, the `add` function has the signature `elt -> t -> t`, which means
4343
that it expects an element (a String), and a set of strings, and will return to you
4444
a set of strings. As you gain more experience in OCaml and other functional languages,
45-
the type signature of functions are often the most convenient form of documentation
45+
the type signature of functions are often a basic but very convenient form of documentation
4646
on how to use those functions.
4747

4848
## Creating a Set
@@ -142,7 +142,7 @@ SS.cardinal secondSet;;
142142

143143
It looks like our theories were correct!
144144

145-
## Sets of With Custom Comparators
145+
## Sets With Custom Comparators
146146

147147
The `SS` module we created uses the built-in comparison function provided
148148
by the `String` module, which performs a case-sensitive comparison. We

0 commit comments

Comments
 (0)