From fcc035f4156a8a1955917f848f46978700d1e105 Mon Sep 17 00:00:00 2001 From: Sean Cheng Date: Tue, 25 Nov 2025 21:01:28 -0500 Subject: [PATCH] add 'more' --- src/Tutorial/DataTypes/AltSyntax.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tutorial/DataTypes/AltSyntax.md b/src/Tutorial/DataTypes/AltSyntax.md index fe979f9..d21dcd9 100644 --- a/src/Tutorial/DataTypes/AltSyntax.md +++ b/src/Tutorial/DataTypes/AltSyntax.md @@ -4,7 +4,7 @@ module Tutorial.DataTypes.AltSyntax ``` -While the examples in the section about parameterized data types are short and concise, there is a slightly more verbose but much more general form for writing such definitions, which makes it much explicit what's going on. This form is generally considered to be preferable for all but the most basic of data definitions. +While the examples in the section about parameterized data types are short and concise, there is a slightly more verbose but much more general form for writing such definitions, which makes it much more explicit what's going on. This form is generally considered to be preferable for all but the most basic of data definitions. Here are the definitions of `Option`, `Validated`, and `Seq` again, using this more general form: