Descption: Fix typos in manpage
Bug:
https://rt.cpan.org/Ticket/Display.html?id=113644
Forwarded:
https://rt.cpan.org/Ticket/Display.html?id=113644
Author: Lucas Kanashiro <kanashiro.duarte@gmail.com>
Reviewed-by: gregor herrmann <gregoa@debian.org>
Last-Update: 2016-11-12
--- a/lib/POE/Filter/SSL.pm
+++ b/lib/POE/Filter/SSL.pm
@@ -715,7 +715,7 @@ By default I<POE::Filter::SSL> acts as a
=item Advanced Example
This example is an IMAP-Relay which forwards the connections to a IMAP server
-by username. It allows one the uncrypted transfer on port 143, with the option
+by username. It allows one the unencrypted transfer on port 143, with the option
of SSL on the established connection (STARTTLS). On port 993 it allows one to do
direct SSL.
@@ -988,11 +988,11 @@ The ca certificate file (ca.crt), which
=item chain
-Chain certificate, you need it for example for startssl.org wich needs a intermedia certificates. Here you can configure it. You can generate this the following way:
+Chain certificate, you need it for example for startssl.org which needs a intermedia certificates. Here you can configure it. You can generate this the following way:
cat client.crt intermediate.crt ca.crt > chain.pem
-In this case, you normaly have no I<key> and I<crt> option.
+In this case, you normally have no I<key> and I<crt> option.
=item cacrl
@@ -1010,7 +1010,7 @@ You are able to pass the already inmemor
Only in server mode: Request during ssl handshake from the client a client certificat.
-B<WARNING:> If the client provides an untrusted or no client certficate, the connection is B<not> failing. You have to ask I<clientCertValid()> if the certicate is valid!
+B<WARNING:> If the client provides an untrusted or no client certificate, the connection is B<not> failing. You have to ask I<clientCertValid()> if the certificate is valid!
=item nohonor
@@ -1036,7 +1036,7 @@ B<WARNING:> If the client is listed in t
=item handshakeDone(options)
-Returns I<true> if the handshake is done and all data for hanshake has been written out. It accepts the following options:
+Returns I<true> if the handshake is done and all data for handshake has been written out. It accepts the following options:
=over 2
@@ -1090,7 +1090,7 @@ See the I<HTTPS-Server>, I<SSL on an est
Returns I<true> if there is a client certificate, that might be untrusted.
-B<WARNING:> If the client provides an untrusted client certficate a client certicate that is listed in CRL, this function returns I<true>. You have to ask I<clientCertValid()> if the certicate is valid!
+B<WARNING:> If the client provides an untrusted client certificate a client certificate that is listed in CRL, this function returns I<true>. You have to ask I<clientCertValid()> if the certificate is valid!
=item errorhandler
@@ -1104,7 +1104,7 @@ Do not report any error.
=item I<CODE>
-Setting errorhandler to a reference of a function allows to be called it callback function with the following options:
+Setting errorhandler to a reference of a function allows one to be called it callback function with the following options:
ARG1: POE:SSL::Filter instance
@@ -1112,7 +1112,7 @@ ARG2: Ref on a Hash with the following k
ret The return code of Net::SSLeay::connect (client) or Net::SSLeay::accept (server)
ssl The SSL context (SSL_CTX)
- msg The error message as text, as normaly reported via carp
+ msg The error message as text, as normally reported via carp
get_error The error code of get_error the ssl context
error The error code of get_error without context
@@ -1126,7 +1126,7 @@ Do Carp/confess (stacktrace) on error.
=item "carponetime"
-Report carp for one occurence only one time - over all!
+Report carp for one occurrence only one time - over all!
=back