From df965db51e60335540ad7cad6598546808d8a3bd Mon Sep 17 00:00:00 2001 From: Erik Schnetter Date: Thu, 8 Mar 2018 16:14:57 -0500 Subject: [PATCH] Correct typo in comment --- Data/Vec/Base.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Vec/Base.hs b/Data/Vec/Base.hs index cb4e181..51a5825 100644 --- a/Data/Vec/Base.hs +++ b/Data/Vec/Base.hs @@ -279,7 +279,7 @@ reverse :: (Reverse' () v v') => v -> v' reverse v = reverse' () v {-# INLINE reverse #-} --- really the type of reverse should b v->v but somehow this makes inference easier +-- really the type of reverse should be v->v but somehow this makes inference easier -- | Reverse helper function : accumulates the reversed list in its first argument