summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-03-07 10:31:48 +0000
committerMatt Caswell <matt@openssl.org>2016-03-07 21:42:09 +0000
commitde69bc5d1af9a0c91636b8ee804fd3688e51b4eb (patch)
tree33c95482bb1fa5e05bf33c4f2d6be21ffe363734 /doc
parent44ab2dfdf9dc519e6d081646119bdda3ddfd9e85 (diff)
Fix typo in SSL_pending docs
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/ssl/SSL_pending.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ssl/SSL_pending.pod b/doc/ssl/SSL_pending.pod
index 4da9cd5d96..d247fa33f9 100644
--- a/doc/ssl/SSL_pending.pod
+++ b/doc/ssl/SSL_pending.pod
@@ -36,7 +36,7 @@ SSL_has_pending() returns 1 if B<s> has buffered data (whether processed or
unprocessed) and 0 otherwise. Note that it is possible for SSL_has_pending() to
return 1, and then a subsequent call to SSL_read() to return no data because the
unprocessed buffered data when processed yielded no application data (for
-example this can happend during renegotiation). It is also possible in this
+example this can happen during renegotiation). It is also possible in this
scenario for SSL_has_pending() to continue to return 1 even after an SSL_read()
call because the buffered and unprocessed data is not yet processable (e.g.
because OpenSSL has only received a partial record so far).