From 3a15c34743ce682e2bacf6cf9462ce38e2c89e50 Mon Sep 17 00:00:00 2001 From: kiana-S Date: Tue, 28 Dec 2021 00:51:51 -0500 Subject: [PATCH] Update GOL.Space --- GOL/Space.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GOL/Space.hs b/GOL/Space.hs index 3d0526a..29b20b9 100644 --- a/GOL/Space.hs +++ b/GOL/Space.hs @@ -15,8 +15,8 @@ import qualified Data.Vector as V -- takes place, with a notion of "neighbors to a cell" defined. -- -- More specifically, a space is a representable functor @f@ such --- that @'Rep' f@ is a graph. 'neighbors' then takes a node of --- that graph and returns all nodes that are adjacent. +-- that @'Rep' f@ is a simple undirected graph. 'neighbors' then +-- takes a node of that graph and returns all nodes that are adjacent. -- -- Instances should satisfy: --