From b5a56ea7b0d67be992a7ab258708b6ea4c9a9d9c Mon Sep 17 00:00:00 2001 From: hasufell Date: Sat, 29 Nov 2014 05:09:13 +0100 Subject: [PATCH] ALGO: fix spelling in QuadTree --- Algorithms/QuadTree/QuadTree.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Algorithms/QuadTree/QuadTree.hs b/Algorithms/QuadTree/QuadTree.hs index 4c62ce0..33c31ea 100644 --- a/Algorithms/QuadTree/QuadTree.hs +++ b/Algorithms/QuadTree/QuadTree.hs @@ -49,10 +49,10 @@ data Crumb a = NWCrumb (QuadTree a) (QuadTree a) (QuadTree a) deriving (Show, Eq) -- |A list of Crumbs. -type Breadbrumbs a = [Crumb a] +type Breadcrumbs a = [Crumb a] -- |Zipper for the QuadTree. -type Zipper a = (QuadTree a, Breadbrumbs a) +type Zipper a = (QuadTree a, Breadcrumbs a) -- |Orientation. data Orient = North | South | East | West