[commit: vector] master: Fix grammar in documentation (a591bdb)
Roman Leshchinskiy
rl at cse.unsw.edu.au
Sun Jun 19 23:15:33 CEST 2011
Repository : ssh://darcs.haskell.org//srv/darcs/packages/vector
On branch : master
http://hackage.haskell.org/trac/ghc/changeset/a591bdb979b567cdab1bd23009e70d8740819ee7
>---------------------------------------------------------------
commit a591bdb979b567cdab1bd23009e70d8740819ee7
Author: Bas van Dijk <v.dijk.bas at gmail.com>
Date: Wed Apr 13 09:15:38 2011 +0000
Fix grammar in documentation
>---------------------------------------------------------------
Data/Vector/Generic.hs | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Data/Vector/Generic.hs b/Data/Vector/Generic.hs
index 218efbf..0767d55 100644
--- a/Data/Vector/Generic.hs
+++ b/Data/Vector/Generic.hs
@@ -381,7 +381,7 @@ tail :: Vector v a => v a -> v a
{-# INLINE_STREAM tail #-}
tail v = slice 1 (length v - 1) v
--- | /O(1)/ Yield at the first @n@ elements without copying. The vector may
+-- | /O(1)/ Yield the first @n@ elements without copying. The vector may
-- contain less than @n@ elements in which case it is returned unchanged.
take :: Vector v a => Int -> v a -> v a
{-# INLINE_STREAM take #-}
More information about the Cvs-libraries
mailing list