summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-03-16 14:51:20 +0100
committerMichał Górny <mgorny@gentoo.org>2021-03-16 17:42:16 +0100
commita677ccd2966d9c9cb9458586eaacee33055896b2 (patch)
tree2bb3e8d1ff02b9d6842877b34511ea376d823217 /dev-haskell/bitwise
parentmedia-fonts/ja-ipafonts: EAPI-7 bump (diff)
downloadgentoo-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.xml10
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 &#39;Bool&#39; to bitwise
- operations on &#39;Data.Bits.Bits&#39;.
+ [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 &#39;Control.Monad.ST.ST&#39;.
+ [Data.Array.BitArray.ST] Mutable bit arrays in 'Control.Monad.ST.ST'.
- [Data.Array.BitArray.IO] Mutable bit arrays in &#39;IO&#39;.
+ [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@,
- * &#39;Control.Monad.ST.ST&#39; 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 -&gt; Bool@: