From 88e7cf84e803871fb615d7467f265ddd7342f5fb Mon Sep 17 00:00:00 2001 From: "Athul S. Nambiar" Date: Sat, 8 Jul 2023 00:53:03 +0530 Subject: [PATCH] Fix typo in Chapter3>Analogues to algebraic data types in other languages>The Structure>4th(Last) Paragraph --- 3-defining-types-streamlining-functions.org | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/3-defining-types-streamlining-functions.org b/3-defining-types-streamlining-functions.org index 884d17d..1ca21b5 100644 --- a/3-defining-types-streamlining-functions.org +++ b/3-defining-types-streamlining-functions.org @@ -431,9 +431,10 @@ field of the Haskell type, and the title is in the second. We refer to them by location, not by name. In [[file:3-defining-types-streamlining-functions.org::*Pattern matching][the section called "Pattern matching"]] -the fields of a ~BookStore~ value. In +, we'll see how to access the fields of a ~BookStore~ value. In [[file:3-defining-types-streamlining-functions.org::*Record syntax][the section called "Record syntax"]] -syntax for defining data types that looks a little more C-like. +, we'll introduce an alternate syntax for defining data types +that looks a little more C-like. **** The enumeration