From 3e35b90ce65c3bf0e3d7022144b093d9f35a4d41 Mon Sep 17 00:00:00 2001
From: ShalokShalom <shalokshalom@protonmail.ch>
Date: Tue, 2 May 2023 12:16:16 +0000
Subject: [PATCH] Update enum.md

Haskell uses data. OCaml and F# do use type, and SML does use datatype. There is no "data" in any ML that I know.
---
 src/types/enum.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/types/enum.md b/src/types/enum.md
index 8f81fb1a5..1ee6fc608 100644
--- a/src/types/enum.md
+++ b/src/types/enum.md
@@ -16,7 +16,7 @@ Enum types cannot be denoted *structurally* as types, but must be denoted by
 named reference to an [`enum` item].
 
 [^enumtype]: The `enum` type is analogous to a `data` constructor declaration in
-             ML, or a *pick ADT* in Limbo.
+             Haskell, or a *pick ADT* in Limbo.
 
 [`enum` item]: ../items/enumerations.md
 [struct expression]: ../expressions/struct-expr.md