From d8795463a0902861c023d02a656563a9e0407990 Mon Sep 17 00:00:00 2001 From: Alistair Date: Fri, 15 Jan 2021 10:53:36 +1100 Subject: [PATCH] Documentation fix for partitionWith --- Data/Vector.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Vector.hs b/Data/Vector.hs index 2525cc77..cca27eaa 100644 --- a/Data/Vector.hs +++ b/Data/Vector.hs @@ -1343,7 +1343,7 @@ unstablePartition :: (a -> Bool) -> Vector a -> (Vector a, Vector a) unstablePartition = G.unstablePartition -- | /O(n)/ Split the vector in two parts, the first one containing the --- @Right@ elements and the second containing the @Left@ elements. +-- @Left@ elements and the second containing the @Right@ elements. -- The relative order of the elements is preserved. -- -- @since 0.12.1.0