From a677ccd2966d9c9cb9458586eaacee33055896b2 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Tue, 16 Mar 2021 14:51:20 +0100 Subject: */*: Normalize metadata.xml files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Normalize quoting, replace '>' with entities, replace unnecessary entities, remove trailing empty lines. Done via: find -name metadata.xml -exec xml ed -P -L -d //none {} + Signed-off-by: Michał Górny --- dev-haskell/bitwise/metadata.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'dev-haskell/bitwise') diff --git a/dev-haskell/bitwise/metadata.xml b/dev-haskell/bitwise/metadata.xml index 4f0bc14cf689..c68a0e9787de 100644 --- a/dev-haskell/bitwise/metadata.xml +++ b/dev-haskell/bitwise/metadata.xml @@ -22,14 +22,14 @@ Quick tour of the bitwise library: - [Data.Bits.Bitwise] Lift boolean operations on 'Bool' to bitwise - operations on 'Data.Bits.Bits'. + [Data.Bits.Bitwise] Lift boolean operations on 'Bool' to bitwise + operations on 'Data.Bits.Bits'. [Data.Array.BitArray] Immutable bit arrays. - [Data.Array.BitArray.ST] Mutable bit arrays in 'Control.Monad.ST.ST'. + [Data.Array.BitArray.ST] Mutable bit arrays in 'Control.Monad.ST.ST'. - [Data.Array.BitArray.IO] Mutable bit arrays in 'IO'. + [Data.Array.BitArray.IO] Mutable bit arrays in 'IO'. [Data.Array.BitArray.ByteString] (De)serialization. @@ -40,7 +40,7 @@ * immutable random access single bit reads: @BitArray ix@ is about 40% slower than @UArray ix Bool@, - * 'Control.Monad.ST.ST' mutable random access single bit reads: + * 'Control.Monad.ST.ST' mutable random access single bit reads: @STBitArray s ix@ is about the same as @STUArray s ix Bool@, * immutable map @Bool -> Bool@: -- cgit v1.2.3-65-gdbad