From d6403a02588eb91ad9342ff632a2d31966ae4287 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Fri, 11 Sep 2009 21:04:37 +0000 Subject: [PATCH] Fix "init" docs: the input list need not be finite. Fixes trac #3465 --- GHC/List.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GHC/List.lhs b/GHC/List.lhs index b2ec4f8..5dcf7e0 100644 --- a/GHC/List.lhs +++ b/GHC/List.lhs @@ -89,7 +89,7 @@ last (x:xs) = last' x xs #endif -- | Return all the elements of a list except the last one. --- The list must be finite and non-empty. +-- The list must be non-empty. init :: [a] -> [a] #ifdef USE_REPORT_PRELUDE init [x] = [] -- 1.7.10.4