wl-pprint 1.0 → 1.1
raw patch · 2 files changed
+9/−6 lines, 2 filesnew-uploader
Files
- Text/PrettyPrint/Leijen.hs +2/−2
- wl-pprint.cabal +7/−4
Text/PrettyPrint/Leijen.hs view
@@ -4,7 +4,7 @@ -- Copyright : Daan Leijen (c) 2000, http://www.cs.uu.nl/~daan -- License : BSD-style (see the file LICENSE) ----- Maintainer : stefanor@cox.net+-- Maintainer : otakar.smrz cmu.edu -- Stability : provisional -- Portability : portable --@@ -173,7 +173,7 @@ = case ds of [] -> left <> right [d] -> left <> d <> right- _ -> align (cat (zipWith (<>) (left : repeat sep) ds) <> right) + _ -> align (cat (zipWith (<>) (left : repeat sep) ds) <> right) -----------------------------------------------------------
wl-pprint.cabal view
@@ -1,13 +1,16 @@ Name: wl-pprint-Version: 1.0+Version: 1.1 Synopsis: The Wadler/Leijen Pretty Printer Category: Text Description: This is a pretty printing library based on Wadler's paper "A Prettier- Printer". See the haddocks for full info.+ Printer". See the haddocks for full info. This version allows the+ library user to declare overlapping instances of the 'Pretty' class. License: BSD3 License-file: LICENSE Author: Daan Leijen-Maintainer: stefanor@cox.net-Build-Depends: base+Maintainer: otakar.smrz cmu.edu+Build-Depends: base < 5+Build-Type: Simple Exposed-Modules: Text.PrettyPrint.Leijen+Extensions: OverlappingInstances