@ -2,8 +2,7 @@ Welcome to Pontarius XMPP!
@@ -2,8 +2,7 @@ Welcome to Pontarius XMPP!
==========================
Pontarius XMPP is an active work in progress to build a Haskell XMPP library
that implements the client capabilities of [RFC 6120 ("XMPP
Core")](http://tools.ietf.org/html/rfc6120).
that implements the client capabilities of [RFC 6120](http://tools.ietf.org/html/rfc6120).
Getting started
---------------
@ -34,7 +33,7 @@ When this is done, a <code>Session</code> object can be acquired by calling
@@ -34,7 +33,7 @@ When this is done, a <code>Session</code> object can be acquired by calling
_Tip:_ Note that the first parameter actually is a Text value. Import
<code>Data.Text</code> and use the OverloadedStrings LANGUAGE pragma.
@ -47,14 +46,13 @@ with TLS, authenticate, establish a concurrent interface for interacting with
@@ -47,14 +46,13 @@ with TLS, authenticate, establish a concurrent interface for interacting with
the stream, and return the <code>Session</code> object.
The return type of <code>session</code> is <code>IO (Either XmppFailure
(Session, Maybe AuthFailure))</code>. As <code>XmppFailure</code> is an
Session)</code>. As <code>XmppFailure</code> is an
<code>Control.Monad.Error</code> instance, you can utilize the
<code>ErrorT</code> monad transformer for error handling. A more simple way of