summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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 '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@: