summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Pappacoda <andrea@pappacoda.it>2023-01-30 10:28:49 +0100
committerTomas Mraz <tomas@openssl.org>2023-01-31 12:12:57 +0100
commit45e6a9747360910e2161095a0816043657842d76 (patch)
tree257dbce0da8997f931f5650a334d9bdf8c9fd9c3
parentd36b0450d9dc703f1ceb395c610fd1f496809228 (diff)
BIO_read.pod: fix small typo
Add missing `I` to `<b>` CLA: trivial Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20169) (cherry picked from commit 0414899887b98f973067f286ac126d8b529873e3)
-rw-r--r--doc/man3/BIO_read.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man3/BIO_read.pod b/doc/man3/BIO_read.pod
index a2d8ab3af0..5acc5b8906 100644
--- a/doc/man3/BIO_read.pod
+++ b/doc/man3/BIO_read.pod
@@ -42,7 +42,7 @@ if present in the input data.
On binary input there may be NUL characters within the string;
in this case the return value (if nonnegative) may give an incorrect length.
-BIO_get_line() attempts to read from BIO <b> a line of data up to the next '\n'
+BIO_get_line() attempts to read from BIO I<b> a line of data up to the next '\n'
or the maximum length I<size-1> is reached and places the data in I<buf>.
The returned string is always NUL-terminated and the '\n' is preserved
if present in the input data.