summaryrefslogtreecommitdiffstats
path: root/doc/man3/BIO_s_bio.pod
diff options
context:
space:
mode:
authorBeat Bolli <dev@drbeat.li>2017-04-03 19:52:33 +0200
committerMatt Caswell <matt@openssl.org>2017-06-08 11:54:16 +0100
commit95dd5fb21427d32272e05ce94d0769d55861fc8b (patch)
tree79cb37e1caf4b6f0839f563c07659f4948da217b /doc/man3/BIO_s_bio.pod
parentd42e7759f5a6be55345dc9410d98b3ccf6330d3f (diff)
doc: use /* ... */ comments in code examples
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1956)
Diffstat (limited to 'doc/man3/BIO_s_bio.pod')
-rw-r--r--doc/man3/BIO_s_bio.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/BIO_s_bio.pod b/doc/man3/BIO_s_bio.pod
index c3ed1397a7..dfafa351e4 100644
--- a/doc/man3/BIO_s_bio.pod
+++ b/doc/man3/BIO_s_bio.pod
@@ -144,7 +144,7 @@ without having to go through the SSL-interface.
...
BIO_new_bio_pair(&internal_bio, 0, &network_bio, 0);
SSL_set_bio(ssl, internal_bio, internal_bio);
- SSL_operations(); //e.g SSL_read and SSL_write
+ SSL_operations(); /* e.g SSL_read and SSL_write */
...
application | TLS-engine