diff options
author | 2021-03-16 14:51:20 +0100 | |
---|---|---|
committer | 2021-03-16 17:42:16 +0100 | |
commit | a677ccd2966d9c9cb9458586eaacee33055896b2 (patch) | |
tree | 2bb3e8d1ff02b9d6842877b34511ea376d823217 /dev-haskell/bitwise | |
parent | media-fonts/ja-ipafonts: EAPI-7 bump (diff) | |
download | gentoo-a677ccd2966d9c9cb9458586eaacee33055896b2.tar.gz gentoo-a677ccd2966d9c9cb9458586eaacee33055896b2.tar.bz2 gentoo-a677ccd2966d9c9cb9458586eaacee33055896b2.zip |
*/*: Normalize metadata.xml files
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 <mgorny@gentoo.org>
Diffstat (limited to 'dev-haskell/bitwise')
-rw-r--r-- | dev-haskell/bitwise/metadata.xml | 10 |
1 files changed, 5 insertions, 5 deletions
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@: |