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/io-streams
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/io-streams')
-rw-r--r--dev-haskell/io-streams/metadata.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/dev-haskell/io-streams/metadata.xml b/dev-haskell/io-streams/metadata.xml
index a86f42647c54..307b43967abb 100644
--- a/dev-haskell/io-streams/metadata.xml
+++ b/dev-haskell/io-streams/metadata.xml
@@ -14,7 +14,7 @@
The io-streams library contains simple and easy-to-use primitives for I/O
using streams. Most users will want to import the top-level convenience
- module &quot;System.IO.Streams&quot;, which re-exports most of the library:
+ module "System.IO.Streams", which re-exports most of the library:
@
import System.IO.Streams (InputStream, OutputStream)
@@ -22,7 +22,7 @@
@
For first-time users, @io-streams@ comes with an included tutorial, which can
- be found in the &quot;System.IO.Streams.Tutorial&quot; module.
+ be found in the "System.IO.Streams.Tutorial" module.
/Features/
@@ -50,19 +50,19 @@
Stream composition leaves the original stream accessible:
@
- ghci&gt; input \&lt;- Streams.fromByteString \&quot;long string\&quot;
+ ghci&gt; input \&lt;- Streams.fromByteString \"long string\"
ghci&gt; wrapped \&lt;- Streams.takeBytes 4 input
ghci&gt; Streams.read wrapped
- Just \&quot;long\&quot;
+ Just \"long\"
ghci&gt; Streams.read wrapped
Nothing
ghci&gt; Streams.read input
- Just \&quot; string\&quot;
+ Just \" string\"
@
Simple types and operations in the IO monad mean straightforward and simple
exception handling and resource cleanup using Haskell standard library
- facilities like &#39;Control.Exception.bracket&#39;.
+ facilities like 'Control.Exception.bracket'.
@io-streams@ comes with: