summaryrefslogtreecommitdiffstats
path: root/doc/crypto/BIO_read.pod
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-09-14 12:14:41 +0000
committerRichard Levitte <levitte@openssl.org>2000-09-14 12:14:41 +0000
commite117a890caecc402ea57fb5ea26bcfddbedee6ce (patch)
tree5abf5aec5efd432fa15d49019de00ad82b76c6a8 /doc/crypto/BIO_read.pod
parent5614bb91f51a88a13f1ffc474e880a51fd4b86c9 (diff)
Remove indentation in the NAME section. There's really no need to
indent there, especially since the pod2* scripts will regard that as preformated text. In one case, indent a code section one step.
Diffstat (limited to 'doc/crypto/BIO_read.pod')
-rw-r--r--doc/crypto/BIO_read.pod10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/crypto/BIO_read.pod b/doc/crypto/BIO_read.pod
index e7eb5ea045..563806c206 100644
--- a/doc/crypto/BIO_read.pod
+++ b/doc/crypto/BIO_read.pod
@@ -2,16 +2,16 @@
=head1 NAME
- BIO_read, BIO_write, BIO_gets, BIO_puts - BIO I/O functions
+BIO_read, BIO_write, BIO_gets, BIO_puts - BIO I/O functions
=head1 SYNOPSIS
#include <openssl/bio.h>
-int BIO_read(BIO *b, void *buf, int len);
-int BIO_gets(BIO *b,char *buf, int size);
-int BIO_write(BIO *b, const void *buf, int len);
-int BIO_puts(BIO *b,const char *buf);
+ int BIO_read(BIO *b, void *buf, int len);
+ int BIO_gets(BIO *b,char *buf, int size);
+ int BIO_write(BIO *b, const void *buf, int len);
+ int BIO_puts(BIO *b,const char *buf);
=head1 DESCRIPTION