From: Ian Lynagh Date: Fri, 11 Sep 2009 21:04:37 +0000 (+0000) Subject: Fix "init" docs: the input list need not be finite. Fixes trac #3465 X-Git-Tag: ghc-darcs-git-switchover~317 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=d6403a02588eb91ad9342ff632a2d31966ae4287;p=ghc-base.git Fix "init" docs: the input list need not be finite. Fixes trac #3465 --- 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] = []